aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-03-18 15:47:05 +0900
committernsfisis <nsfisis@gmail.com>2023-03-18 15:47:05 +0900
commit2b50e1778b164e641c03c2e77176b6f47ca1e278 (patch)
tree3fa48f5c5c3c2b9d8753ce82d438aa2523856660 /public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html
parent4ce1f674055ac1dd1c4864f366aac212f5643248 (diff)
downloadblog.nsfisis.dev-2b50e1778b164e641c03c2e77176b6f47ca1e278.tar.gz
blog.nsfisis.dev-2b50e1778b164e641c03c2e77176b6f47ca1e278.tar.zst
blog.nsfisis.dev-2b50e1778b164e641c03c2e77176b6f47ca1e278.zip
refactor: add RawHTML type to represent text node not being escaped
Diffstat (limited to 'public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html')
-rw-r--r--public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html b/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html
index 93a0a0c..8d821d7 100644
--- a/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html
+++ b/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html
@@ -689,15 +689,15 @@ ${
先程と同じく、<code>chr</code>や<code>printf</code>を生成する部分は長くなるので省いた。
</p>
- <pre class="monospaced highlight"><code>${
-'_
-'}</code></pre>
+ <pre class="highlight monospaced"><code>${
+&apos;_
+&apos;}</code></pre>
<p>
は変数で、中にはスペースとエスケープが入っている (<code>chr(32) . chr(92)</code>)。シェルに渡されている文字列は次のようになる。
</p>
- <pre class="monospaced highlight"><code>e\
+ <pre class="highlight monospaced"><code>e\
c\
h\
o\
@@ -718,9 +718,9 @@ o\
ちなみに、PHP 8.2 からは、この記法で Warning が出るようになるようだ。
</p>
- <pre class="monospaced highlight"><code>${
-'_
-'}</code></pre>
+ <pre class="highlight monospaced"><code>${
+&apos;_
+&apos;}</code></pre>
<p>
最新版で警告が出るというのも美しくないので、私としては本編の解法を推す。