# How to get markdown language plugins?

**URL:** https://discourse.julialang.org/t/how-to-get-markdown-language-plugins/80884
**Category:** General Usage
**Tags:** markdown
**Created:** [May 11, 2022, 1:13pm UTC](https://discourse.julialang.org/t/how-to-get-markdown-language-plugins/80884 "2022-05-11T13:13:44Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Rratic](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rratic/32/24917_2.png) [@Rratic](https://discourse.julialang.org/u/Rratic)
#### Post date: [May 11, 2022, 1:13pm UTC](https://discourse.julialang.org/t/how-to-get-markdown-language-plugins/80884/1 "2022-05-11T13:13:44Z")

</div>

I’m currently trying to parse some markdown files with julia-language quotes to html. Since it’s too slow to open pages by pluto and I need to insert things like gitalk, I don’t want a fully wrapped one.  
Obviously Markdown itself does not provide this function:

````nohighlight
julia> html(md"""
       ```jl
       foo(true)
       ```
       """)
"<pre><code class=\"language-jl\">foo&#40;true&#41;</code></pre>\n"

````

I searched for packages but found nothing which seem to solve this.

---

<div class="post-metadata">

### Author: ![tbeason](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tbeason/32/15898_2.png) [@tbeason](https://discourse.julialang.org/u/tbeason)
#### Post date: [May 11, 2022, 1:20pm UTC](https://discourse.julialang.org/t/how-to-get-markdown-language-plugins/80884/2 "2022-05-11T13:20:39Z")

</div>

My guess would be that you could piggy-back or borrow this functionality from one of the packages that does this like Literate, Documenter, Franklin, etc.

But I’ll admit it isn’t entirely clear to me what you want.

---

<div class="post-metadata">

### Author: ![Rratic](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rratic/32/24917_2.png) [@Rratic](https://discourse.julialang.org/u/Rratic)
#### Post date: [May 11, 2022, 1:49pm UTC](https://discourse.julialang.org/t/how-to-get-markdown-language-plugins/80884/3 "2022-05-11T13:49:21Z")

</div>

> But I’ll admit it isn’t entirely clear to me what you want.

Well, if it’s only to solve this problem, I need a function to parse markdown-format string into html-format string with colorful julia-language quotes.

> piggy-back or borrow this functionality

Not quite practicable, I’ve learned almost every function except the one I need.
