# Colored markdown section with Pluto.jl

**URL:** https://discourse.julialang.org/t/colored-markdown-section-with-pluto-jl/53497
**Category:** General Usage
**Tags:** question, package, pluto-markdown
**Created:** [January 17, 2021, 7:37pm UTC](https://discourse.julialang.org/t/colored-markdown-section-with-pluto-jl/53497 "2021-01-17T19:37:40Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![cadojo](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/cadojo/32/25328_2.png) [@cadojo](https://discourse.julialang.org/u/cadojo)
#### Post date: [January 17, 2021, 7:37pm UTC](https://discourse.julialang.org/t/colored-markdown-section-with-pluto-jl/53497/1 "2021-01-17T19:37:40Z")

</div>

In Pluto.jl, is there any way to create colored Markdown “tips” or “notes”, as shown in Julia’s [Markdown Documentation](https://docs.julialang.org/en/v1/stdlib/Markdown/)? I think I’ve seen some Pluto notebooks on course channels on YouTube (mainly MIT courses), but I’m not sure how to do this. When I write `md"!!! note Note text goes here"`, no colored output is shown. When I write…

```julia
md"""
!!! note
Note text goes here.
"""

```

I see a colored Markdown section with the header “note”, but “Note text goes here” is printed below the section.

---

<div class="post-metadata">

### Author: ![oxinabox](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/oxinabox/32/206603_2.png) [@oxinabox](https://discourse.julialang.org/u/oxinabox)
#### Post date: [January 17, 2021, 8:07pm UTC](https://discourse.julialang.org/t/colored-markdown-section-with-pluto-jl/53497/2 "2021-01-17T20:07:49Z")

</div>

Not tested on Pluto but see the [Admonitions](https://docs.julialang.org/en/v1/stdlib/Markdown/#Admonitions) section of the docs.  
The indenting is important  
I think you need

```julia
md"""
!!! note
    Note text goes here.
"""

```

---

<div class="post-metadata">

### Author: ![TI36XPro](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ti36xpro/32/33658_2.png) [@TI36XPro](https://discourse.julialang.org/u/TI36XPro)
#### Post date: [January 17, 2021, 8:13pm UTC](https://discourse.julialang.org/t/colored-markdown-section-with-pluto-jl/53497/3 "2021-01-17T20:13:47Z")

</div>

The pluto notebook samples that come with the package have some examples of colored sections of markdown if I recall, might take a look there and see how they accomplished it.
