hugo-shortcode

Hugo shortcode ignored saying “raw HTML omitted”

◇◆丶佛笑我妖孽 提交于 2020-12-08 15:02:18
问题 I have written a shortcode to create a bootstrap dismissable alert box. Below is my shortcode called as layouts/shortcodes/message.html . <div class="alert alert-{{.Get 0}} alert-dismissible fade show" role="alert"> {{.Inner}} <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> This is how I am calling from my content markdown file: {{% message warning%}} This can cause build errors {{% /message %}} However, in the

Hugo shortcode ignored saying “raw HTML omitted”

醉酒当歌 提交于 2020-12-08 15:02:13
问题 I have written a shortcode to create a bootstrap dismissable alert box. Below is my shortcode called as layouts/shortcodes/message.html . <div class="alert alert-{{.Get 0}} alert-dismissible fade show" role="alert"> {{.Inner}} <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> This is how I am calling from my content markdown file: {{% message warning%}} This can cause build errors {{% /message %}} However, in the

Hugo shortcode ignored saying “raw HTML omitted”

风格不统一 提交于 2020-12-08 14:59:38
问题 I have written a shortcode to create a bootstrap dismissable alert box. Below is my shortcode called as layouts/shortcodes/message.html . <div class="alert alert-{{.Get 0}} alert-dismissible fade show" role="alert"> {{.Inner}} <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> This is how I am calling from my content markdown file: {{% message warning%}} This can cause build errors {{% /message %}} However, in the