Skip to content

Callout: Revert change to note callout #214

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 3, 2025
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