diff --git a/test/config.yaml b/test/config.yaml index 6b8e05aa..30902214 100644 --- a/test/config.yaml +++ b/test/config.yaml @@ -6,6 +6,11 @@ module: - path: github.com/wowchemy/wowchemy-hugo-modules/wowchemy outputs: home: [HTML, RSS, JSON, WebAppManifest, headers, redirects] +markup: + defaultMarkdownHandler: goldmark + goldmark: {renderer: {unsafe: true}} + highlight: {codeFences: false} + tableOfContents: {startLevel: 2, endLevel: 3} disableAliases: true taxonomies: [] params: diff --git a/wowchemy-cms/README.md b/wowchemy-cms/README.md index 396423b4..9cfef42c 100644 --- a/wowchemy-cms/README.md +++ b/wowchemy-cms/README.md @@ -26,6 +26,7 @@ Built upon the open source [Netlify CMS](https://www.netlifycms.org/) and [Netli - wowchemycms_config - HTML --- + ``` 3. (Optional) If your Git repository's branch is **not** `main`, define it in `config/_default/params.toml`: diff --git a/wowchemy/assets/scss/wowchemy/_base.scss b/wowchemy/assets/scss/wowchemy/_base.scss index 08251f65..9c205730 100644 --- a/wowchemy/assets/scss/wowchemy/_base.scss +++ b/wowchemy/assets/scss/wowchemy/_base.scss @@ -117,6 +117,10 @@ ul.task-list li input[type='checkbox'] { margin-right: 0.5rem; } +.emoji-list ul { + list-style-type: none; +} + /* Navigation bar text */ .navbar-light { font-family: $sta-font-nav, sans-serif; diff --git a/wowchemy/layouts/shortcodes/emoji_list.html b/wowchemy/layouts/shortcodes/emoji_list.html new file mode 100644 index 00000000..b4223ca6 --- /dev/null +++ b/wowchemy/layouts/shortcodes/emoji_list.html @@ -0,0 +1 @@ +
{{ .Inner }}
\ No newline at end of file