TEMPORARIAMENTE INDISPONÍVEL

Utilizando um processador para adicionar Material Design admonishments.

Exemplo de uso:

``` + admonish + {formato_escolhido}

{TEXTO PARA SER EXIBIDO}

```

 


Referência

Para outros exemplos você pode consultar a documentação oficial CLICANDO AQUI

 


Info

A beautifully styled message.
```admonish info
{TEXTO PARA SER EXIBIDO}
```

 


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

Você pode utilizar markdown e HTML para customizar

```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>, `*`.

 


Alerta de bug

~~~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

Você também customizar com um arquivo CSS adicionando nomes de classes

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

Que vai gerar algo assim no HTML, aonde você podera aplicar o CSS:

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

 


Collapsible

```admonish title="{TITULO CUSTOMIZADO}" collapsible=true
{TEXTO PARA SER EXIBIDO}
```
{TEXTO PARA SER EXIBIDO}

 


Invalid blocks

Se ocorrer um erro na renderização será exibido dessa forma

This block will error