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

Troubleshooting.md - github.com/AmazingRise/hugo-theme-diary.wiki.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11a9247728b9d767bbdafe5f3a9ee353de5dd803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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.