# Markdown extra spaces in Pluto.jl

**URL:** https://discourse.julialang.org/t/markdown-extra-spaces-in-pluto-jl/54436
**Category:** Tooling
**Tags:** pluto, pluto-markdown
**Created:** [February 2, 2021, 6:09am UTC](https://discourse.julialang.org/t/markdown-extra-spaces-in-pluto-jl/54436 "2021-02-02T06:09:11Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![TheLateKronos](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/thelatekronos/32/12824_2.png) [@TheLateKronos](https://discourse.julialang.org/u/TheLateKronos)
#### Post date: [February 2, 2021, 6:09am UTC](https://discourse.julialang.org/t/markdown-extra-spaces-in-pluto-jl/54436/1 "2021-02-02T06:09:11Z")

</div>

I want to create a space like the one &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; you just passed. This is done using `&nbsp;` in markdown. However, when I put `&nbsp;` inside a `md""` string macro or the `Markdown.parse("")` function in a pluto notebook, I get the letters instead of the space. I also tried parsing the string as a raw string, but any extra spaces still disappears.

Does anyone know how to create more space in the markdown in a pluto notebook?

---

<div class="post-metadata">

### Author: ![stillyslalom](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/stillyslalom/32/45687_2.png) [@stillyslalom](https://discourse.julialang.org/u/stillyslalom)
#### Post date: [February 2, 2021, 7:04am UTC](https://discourse.julialang.org/t/markdown-extra-spaces-in-pluto-jl/54436/2 "2021-02-02T07:04:08Z")

</div>

You have to make sure the Markdown parser knows you’re giving it an HTML element by interpolating an `@html_str`:  
 ![image](https://global.discourse-cdn.com/julialang/original/3X/8/c/8c104d61a093cc58cf6164aab4ae2f6dea69911a.png)

---

<div class="post-metadata">

### Author: ![TheLateKronos](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/thelatekronos/32/12824_2.png) [@TheLateKronos](https://discourse.julialang.org/u/TheLateKronos)
#### Post date: [February 3, 2021, 11:21am UTC](https://discourse.julialang.org/t/markdown-extra-spaces-in-pluto-jl/54436/3 "2021-02-03T11:21:35Z")

</div>

That works great, thank you.
