chore(starters): update modules to latest commits

This commit is contained in:
Splitter
2025-09-25 01:02:01 +00:00
parent c9ab2cdc10
commit 6d7d754af1
29 changed files with 789 additions and 291 deletions

View File

@@ -115,24 +115,21 @@ renders as
Use [callouts](https://docs.hugoblox.com/reference/markdown/#callouts) (aka _asides_, _hints_, or _alerts_) to draw attention to notes, tips, and warnings.
By wrapping a paragraph in `{{%/* callout note */%}} ... {{%/* /callout */%}}`, it will render as an aside.
Use the `> [!NOTE]` syntax to create a callout.
```markdown
{{%/* callout note */%}}
A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
{{%/* /callout */%}}
> [!NOTE]
> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
```
renders as
{{% callout note %}}
A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
{{% /callout %}}
> [!NOTE]
> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
Or use the `warning` callout type so your readers don't miss critical details:
{{% callout warning %}}
A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
{{% /callout %}}
> [!WARNING]
> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
## Did you find this page helpful? Consider sharing it 🙌