blog

My blog at www.shimmy1996.com

git clone git://git.shimmy1996.com/blog.git
commit 5d754582f7a43d91178bcab24ec53662ed367bce
parent d0e26fa79b913f286e6e499c9f8f9881315cddfb
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Thu, 19 Mar 2020 08:25:10 -0500

Correct link address

Diffstat:
Mcontent/posts/2020-01-09-becoming-pangu-with-gnu-sed.en.md | 2+-
Mcontent/posts/2020-01-09-becoming-pangu-with-gnu-sed.zh.md | 2+-
Morg/2020.org | 4++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/content/posts/2020-01-09-becoming-pangu-with-gnu-sed.en.md b/content/posts/2020-01-09-becoming-pangu-with-gnu-sed.en.md
@@ -19,7 +19,7 @@ find . -path "./public/*" \( -name "*.html" -or -name "*.xml" \) -print -exec se
      -i {} ";"
 ```
 
-In case you are adamant about adhering to the recommendation by this [W3C Working Draft](https://www.w3.org/TR/clreq/#mixed%5Ftext%5Fcomposition%5Fin%5Fhorizontal%5Fwriting%5Fmodegg) and wouldn't mind bloating up the resulting web page, using CSS to create the spacing should do the trick:
+In case you are adamant about adhering to the recommendation by this [W3C Working Draft](https://www.w3.org/TR/clreq/#mixed%5Ftext%5Fcomposition%5Fin%5Fhorizontal%5Fwriting%5Fmode) and wouldn't mind bloating up the resulting web page, using CSS to create the spacing should do the trick:
 
 ```sh
 find . -path "./public/*" \( -name "*.html" -or -name "*.xml" \) -print -exec sed \
diff --git a/content/posts/2020-01-09-becoming-pangu-with-gnu-sed.zh.md b/content/posts/2020-01-09-becoming-pangu-with-gnu-sed.zh.md
@@ -19,7 +19,7 @@ find . -path "./public/*" \( -name "*.html" -or -name "*.xml" \) -print -exec se
      -i {} ";"
 ```
 
-如果你想坚持履行这一[W3C工作草案](https://www.w3.org/TR/clreq/#mixed%5Ftext%5Fcomposition%5Fin%5Fhorizontal%5Fwriting%5Fmodegg)给出的第一选择,且并不在意生成网页的大小的话,可以换用CSS来生成这一间隔:
+如果你想坚持履行这一[W3C工作草案](https://www.w3.org/TR/clreq/#mixed%5Ftext%5Fcomposition%5Fin%5Fhorizontal%5Fwriting%5Fmode)给出的第一选择,且并不在意生成网页的大小的话,可以换用CSS来生成这一间隔:
 
 ```sh
 find . -path "./public/*" \( -name "*.html" -or -name "*.xml" \) -print -exec sed \
diff --git a/org/2020.org b/org/2020.org
@@ -172,7 +172,7 @@ Up till now, I've been manually adding spaces in my source files (in Markdown or
        -i {} ";"
 #+END_SRC
 
-In case you are adamant about adhering to the recommendation by this [[https://www.w3.org/TR/clreq/#mixed_text_composition_in_horizontal_writing_modegg][W3C Working Draft]] and wouldn't mind bloating up the resulting web page, using CSS to create the spacing should do the trick:
+In case you are adamant about adhering to the recommendation by this [[https://www.w3.org/TR/clreq/#mixed_text_composition_in_horizontal_writing_mode][W3C Working Draft]] and wouldn't mind bloating up the resulting web page, using CSS to create the spacing should do the trick:
 #+BEGIN_SRC sh
   find . -path "./public/*" \( -name "*.html" -or -name "*.xml" \) -print -exec sed \
        -e 's/\([a-zA-Z0-9]\|<\/[a-z]*>\)\([^[:punct:][:space:]a-zA-Z0-9\s]\)/\1<span style="margin:0.25ch;"><\/span>\2/g' \
@@ -201,7 +201,7 @@ If you are another one of those Space of Pangu disciples, just note that there's
        -i {} ";"
 #+END_SRC
 
-如果你想坚持履行这一[[https://www.w3.org/TR/clreq/#mixed_text_composition_in_horizontal_writing_modegg][W3C工作草案]]给出的第一选择,且并不在意生成网页的大小的话,可以换用CSS来生成这一间隔:
+如果你想坚持履行这一[[https://www.w3.org/TR/clreq/#mixed_text_composition_in_horizontal_writing_mode][W3C工作草案]]给出的第一选择,且并不在意生成网页的大小的话,可以换用CSS来生成这一间隔:
 #+BEGIN_SRC sh
   find . -path "./public/*" \( -name "*.html" -or -name "*.xml" \) -print -exec sed \
        -e 's/\([a-zA-Z0-9]\|<\/[a-z]*>\)\([^[:punct:][:space:]a-zA-Z0-9\s]\)/\1<span style="margin:0.25ch;"><\/span>\2/g' \