Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion exampleSite/content/test-product/call-out/all-callouts.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,9 @@ This is a Warning callout. There was previously a bug with **bold text** that we

{{<call-out "warning" "Custom warning title">}}
This is a Warning callout with a custom title. There was previously a bug with **bold text** that we should be aware of and continue to check for. This callout was invoked with the `<call-out>` shortcode with the `.warning` class, and a custom title.
{{</call-out>}}
{{</call-out>}}


{{<note>}}
This is a note. In oldframe it should have `note:` in bold, at the start.
{{</note>}}
2 changes: 1 addition & 1 deletion layouts/shortcodes/note.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<blockquote class="note">
<div>{{ .Inner | markdownify }}</div>
<div><strong>Note:</strong><br/> {{ .Inner | markdownify }}</div>
</blockquote>
Loading