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:
authorRise <8315221+AmazingRise@users.noreply.github.com>2020-04-24 06:07:05 +0300
committerRise <8315221+AmazingRise@users.noreply.github.com>2020-04-24 06:07:05 +0300
commit1e3fc863c5041421234c3ae7d595c8e2a91ed0bd (patch)
treeb03c3d3825f6e5a8482e7d8d3389c3d16620eb52
parent26ff5262ee197f2a1234fe0da9c319c979ac1a1b (diff)
Created Troubleshooting (markdown)
-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