Authentication-Results: mail-b.sr.ht; dkim=pass header.d=handlerug.me header.i=@handlerug.me Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by mail-b.sr.ht (Postfix) with ESMTPS id A7BBC11EF0D for <~bitfehler/public-inbox@lists.sr.ht>; Fri, 15 Jul 2022 12:59:07 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=handlerug.me; s=key1; t=1657889946; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=PV03KdR3RYqI45MgkwHASkR5BvA/D/N4OkLHJzUl14w=; b=JQ1ojY9NszVXMqeXZMe56woFqn/UnPZx1tQ8c7B8MB305TJma3JnkFK6GlRnJwbD7HR39i yvfKRtC+t7tRgpABv+MCPf7gy56Eu9aQTdiWCvKgReS1zqazrf3GetshQre/rPUd6/RTIu FE0VxDSUskoKG+ZWGnILRdwpEcFs6YU= From: Umar Getagazov To: ~bitfehler/public-inbox@lists.sr.ht Cc: Umar Getagazov Subject: [PATCH blog] Wrap post content in CDATA Date: Fri, 15 Jul 2022 15:58:54 +0300 Message-Id: <20220715125854.97656-1-umar@handlerug.me> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: handlerug.me --- I also noticed the RSS feed on the live website is missing post content altogether. Is that intentional? bin/mkrss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mkrss b/bin/mkrss index aeb15f6..9c9e9d7 100755 --- a/bin/mkrss +++ b/bin/mkrss @@ -35,7 +35,7 @@ for post in $POSTS; do https://bitfehler.srht.site/${link} $(date -d "${date}" -R) https://bitfehler.srht.site/${link} - $(render_without_title "${post}" | LANG=C sed "s/[\x80-\xFF]//g" | html_encode) + EOF done -- 2.32.1 (Apple Git-133)