TEMPORARILY UNAVAILABLE

Using a processor to add Material Design admonishments.

Example:

``` + admonish + {chosen_format}

{TEXT TO BE DISPLAYED}

```

 


Reference

For other examples you can consult the official documentation CLICK HERE

 


Info

A beautifully styled message.
```admonish info
{TEXT TO BE DISPLAYED}
```

 


Example

My example is the best!
```admonish example
My example is the best!
```

 


Note

A plain note.
```admonish
A plain note.
```

 


Warning

```admonish warning title="{TITULO CUSTOMIZADO}"
The following steps can lead to irrecoverable data corruption.
```
The following steps can lead to irrecoverable data corruption.

 


Success

```admonish success title="{TITULO CUSTOMIZADO}"
This will take a while, go and grab a drink of water.
```
This will take a while, go and grab a drink of water.

 


Markdown/HTML

You can use markdown and HTML to customize

```admonish tip title="_Referencing_ and <i>dereferencing</i>"
The opposite of *referencing* by using `&` is *dereferencing*, which is
accomplished with the <span style="color: hotpink">dereference operator</span>, `*`.
```
The opposite of *referencing* by using `&` is *dereferencing*, which is
accomplished with the <span style="color: hotpink">dereference operator</span>, `*`.

 


Bug alert

~~~admonish bug
This syntax won't work in Python 3:
```python
print "Hello, world!"
```
~~~
This syntax won't work in Python 3:
```python
print "Hello, world!"
```

 


Custom

You can also customize with a CSS file by adding class names

```admonish note class="custom-0 custom-1"
Styled with my custom CSS class.
```
Styled with my custom CSS class.

Which will generate something like this in the HTML, where you can apply the CSS:

<div class="admonition note custom-0 custom-1"
    ...
</div>

 


Collapsible

```admonish title="{CUSTOM TITLE}" collapsible=true
{TEXT TO BE DISPLAYED}
```
{TEXT TO BE DISPLAYED}

 


Invalid blocks

If there is an error in rendering it will be displayed like this

This block will error