防止解析代码块内的简码
Prevent parsing of shortcodes inside code blocks
我想写一篇关于markdown中Hugo, so I write a shortcode语法的教程,但我不想渲染它;我想要它作为普通文本。
{{< ref "/page/about" >}}
当我 运行 hugo server
时,它显示:找不到页面,很明显,它把它当作简码。
我该如何解决?
您只需要在您的短代码中添加 /* */
即可。例如,
{{</* ref "/page/about" */>}}
我想写一篇关于markdown中Hugo, so I write a shortcode语法的教程,但我不想渲染它;我想要它作为普通文本。
{{< ref "/page/about" >}}
当我 运行 hugo server
时,它显示:找不到页面,很明显,它把它当作简码。
我该如何解决?
您只需要在您的短代码中添加 /* */
即可。例如,
{{</* ref "/page/about" */>}}