Hugo Book - Introduction: https://hugo-book-demo.netlify.app/docs/getting-started/introduction/ - Create a Site: https://hugo-book-demo.netlify.app/docs/getting-started/create-a-site/ - Configuration: https://hugo-book-demo.netlify.app/docs/getting-started/configuration/ - Organisation: https://hugo-book-demo.netlify.app/docs/content/organisation/ - Pages: https://hugo-book-demo.netlify.app/docs/content/pages/ - Menus: https://hugo-book-demo.netlify.app/docs/content/menus/ - Blog: https://hugo-book-demo.netlify.app/docs/content/blog/ - Multi-Language: https://hugo-book-demo.netlify.app/docs/content/multilingual/ - Shortcodes: https://hugo-book-demo.netlify.app/docs/content/shortcodes/ - Asciinema: https://hugo-book-demo.netlify.app/docs/content/shortcodes/asciinema/ - Badges: https://hugo-book-demo.netlify.app/docs/content/shortcodes/badges/ - Buttons: https://hugo-book-demo.netlify.app/docs/content/shortcodes/buttons/ - Cards: https://hugo-book-demo.netlify.app/docs/content/shortcodes/cards/ - Columns: https://hugo-book-demo.netlify.app/docs/content/shortcodes/columns/ - Details: https://hugo-book-demo.netlify.app/docs/content/shortcodes/details/ - Hints: https://hugo-book-demo.netlify.app/docs/content/shortcodes/hints/ - Images: https://hugo-book-demo.netlify.app/docs/content/shortcodes/images/ - Mermaid: https://hugo-book-demo.netlify.app/docs/content/shortcodes/mermaid/ - Steps: https://hugo-book-demo.netlify.app/docs/content/shortcodes/steps/ - Tabs: https://hugo-book-demo.netlify.app/docs/content/shortcodes/tabs/ - KaTeX: https://hugo-book-demo.netlify.app/docs/content/shortcodes/katex/ - Styles: https://hugo-book-demo.netlify.app/docs/customization/styles/ - Inject Partials: https://hugo-book-demo.netlify.app/docs/customization/inject-partials/ # Hints Callout blocks for notes, warnings, and other contextual messages. Also supports standard GitHub markdown alerts. ## Syntax ```tpl {{%/* hint [info|success|warning|danger] */%}} Markdown content {{%/* /hint */%}} ``` Or using markdown alerts ```markdown > [!NOTE|TIP|IMPORTANT|WARNING|CAUTION] > Markdown content ``` ## Example {{% hint %}} **Default hint** Without a specified type. {{% /hint %}} {{% hint info %}} **Info** Use for supplementary information that helps the reader. {{% /hint %}} {{% hint success %}} **Success** Use to highlight a recommended approach or positive outcome. {{% /hint %}} {{% hint warning %}} **Warning** Use for important caveats or potential issues. {{% /hint %}} {{% hint danger %}} **Danger** Use for critical warnings about breaking changes or data loss. {{% /hint %}} ## Markdown Alerts Standard GitHub markdown alert syntax is also supported: > [!NOTE] > The theme requires Hugo **extended** edition for SCSS processing. > [!TIP] > Set `disablePathToLower = true` in your config to preserve URL casing. > [!IMPORTANT] > The `unsafe = true` goldmark setting is required for Mermaid and KaTeX shortcodes. > [!WARNING] > Service worker support is experimental and may change in future releases. > [!CAUTION] > Enabling `BookPortableLinks = 'error'` will fail the build if any markdown link targets are missing.