diff --git a/i18n/en.toml b/i18n/en.toml
index 232a2a77..9d1d0448 100644
--- a/i18n/en.toml
+++ b/i18n/en.toml
@@ -84,6 +84,9 @@ other = "min"
[second]
other = "sec"
+
+[return]
+other = "return"
# === posts/single.html ===
# === 404.html ===
diff --git a/i18n/zh.toml b/i18n/zh.toml
index 9befe34a..b013145b 100644
--- a/i18n/zh.toml
+++ b/i18n/zh.toml
@@ -87,6 +87,9 @@ other = "ε"
[second]
other = "η§"
+
+[return]
+other = "θΏε"
# === posts/single.html ===
# === 404.html ===
diff --git a/layouts/posts/single.html b/layouts/posts/single.html
index fe76de34..e434f398 100644
--- a/layouts/posts/single.html
+++ b/layouts/posts/single.html
@@ -77,6 +77,9 @@
{{ $REin = `\[(.+?)\]\^\((.+?)\)` }}
{{ $REout = `$1` }}
{{ $content = replaceRE $REin $REout $content }}
+ {{ $REin = `\[return\]` }}
+ {{ $REout = printf "[%s]" (T "return") }}
+ {{ $content = replaceRE $REin $REout $content }}
{{ $REin = `<(h[23456]) (id=".+?")>` }}
{{ $REout = `<$1>` }}
{{ $content = replaceRE $REin $REout $content }}