diff --git a/exampleSite/content/shortcodes/notice.en.md b/exampleSite/content/shortcodes/notice.en.md index 7c19e038da..ae4a73db47 100644 --- a/exampleSite/content/shortcodes/notice.en.md +++ b/exampleSite/content/shortcodes/notice.en.md @@ -316,13 +316,13 @@ Just a box > [!secondary] > ```c > // With colored border in Markdown syntax -> printf( "Hello world\n" ) +> printf("Hello World!"); > ``` {{%/* notice style="red" */%}} ```c // With colored border in Shortcode syntax -printf( "Hello world\n" ) +printf("Hello World!"); ``` {{%/* /notice */%}} ```` @@ -330,12 +330,12 @@ printf( "Hello world\n" ) > [!secondary] > ```c > // With colored border in Markdown syntax -> printf( "Hello world\n" ) +> printf("Hello World!"); > ``` {{% notice style="red" %}} ```c // With colored border in Shortcode syntax -printf( "Hello world\n" ) +printf("Hello World!"); ``` {{% /notice %}}