notice: fix styling for Markdown code boxes

This commit is contained in:
Sören Weber 2024-09-06 08:49:40 +02:00
parent 86fa3c70f2
commit 1858bf48a3
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
2 changed files with 16 additions and 14 deletions
exampleSite/content/shortcodes

View file

@ -313,27 +313,29 @@ Just a box
#### Code with Collapsed Colored Borders
````
```c
// Normal code:
printf( "Hello world\n" )
```
> [!orange]
> ```c
> // With colored border in Markdown syntax
> printf( "Hello world\n" )
> ```
{{%/* notice style="red" title="" */%}}
{{%/* notice style="red" */%}}
```c
// With colored border
// With colored border in Shortcode syntax
printf( "Hello world\n" )
```
{{%/* /notice */%}}
````
```c
// Normal code:
printf( "Hello world\n" )
```
> [!orange]
> ```c
> // With colored border in Markdown syntax
> printf( "Hello world\n" )
> ```
{{% notice style="red" title="" %}}
{{% notice style="red" %}}
```c
// With colored border
// With colored border in Shortcode syntax
printf( "Hello world\n" )
```
{{% /notice %}}