Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/AmazingRise/hugo-theme-diary.wiki.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Troubleshooting.md')
-rw-r--r--Troubleshooting.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/Troubleshooting.md b/Troubleshooting.md
new file mode 100644
index 0000000..11a9247
--- /dev/null
+++ b/Troubleshooting.md
@@ -0,0 +1,15 @@
+## {{ }} in markdown cannot be rendered
+
+That's because this themes used Vue.js.
+
+Solution:
+Please use `v-pre` to surround the content with {{ }}.
+
+Example:
+If you want to show `{{ Something }}` in your contents, please write in markdown:
+```html
+<div v-pre>
+{{ Something }}
+</div>
+```
+Then you will see `{{ Something }}` on the webpage. \ No newline at end of file