# Custom \<span\> using Documenter.jl

**URL:** https://discourse.julialang.org/t/custom-span-using-documenter-jl/69727
**Category:** Web Stack
**Tags:** documenter
**Created:** [October 14, 2021, 4:49am UTC](https://discourse.julialang.org/t/custom-span-using-documenter-jl/69727 "2021-10-14T04:49:09Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ettersi](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ettersi/32/6829_2.png) [@ettersi](https://discourse.julialang.org/u/ettersi)
#### Post date: [October 14, 2021, 4:49am UTC](https://discourse.julialang.org/t/custom-span-using-documenter-jl/69727/1 "2021-10-14T04:49:09Z")

</div>

How can I insert a custom `<span>` element in a Documenter.jl markdown file?

Specifically, I would like to create HTML like the following:

```julia
Lorem ipsum <span style="color: #f00;">dolor</span> sit amet. 

```

The following bit of markdown comes close, but it splits “Lorem ipsum”, “dolor” and “sit amet” into three paragraphs which is a deal breaker.

````julia
Lorem ipsum
```@raw html
<span style="color: #f00;">dolor</span>
```
sit amet

````
