# Extending STDLIB’s Markdown

**URL:** https://discourse.julialang.org/t/extending-stdlib-s-markdown/84079
**Category:** General Usage
**Tags:** question, markdown
**Created:** [July 12, 2022, 2:14am UTC](https://discourse.julialang.org/t/extending-stdlib-s-markdown/84079 "2022-07-12T02:14:32Z")
**Posts on this page:** 2
**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: [July 12, 2022, 2:14am UTC](https://discourse.julialang.org/t/extending-stdlib-s-markdown/84079/1 "2022-07-12T02:14:32Z")

</div>

I understand that Markdown.jl has been moved into stdlib: [What is the standard Markdown implementation for Julia?](https://discourse.julialang.org/t/what-is-the-standard-markdown-implementation-for-julia/84059)

I’d like to extend this Markdown syntax with MyST Markdown functionality. The Julia documentation states that Markdown is extensible, but I’m not sure how to find the best way to extend the built-in Markdown parser with new features: [Markdown · The Julia Language](https://docs.julialang.org/en/v1/stdlib/Markdown/#Markdown-Syntax-Extensions)

Anyone have any ideas?

---

<div class="post-metadata">

### Author: ![jd-foster](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jd-foster/32/35824_2.png) [@jd-foster](https://discourse.julialang.org/u/jd-foster)
#### Post date: [July 12, 2022, 10:24am UTC](https://discourse.julialang.org/t/extending-stdlib-s-markdown/84079/2 "2022-07-12T10:24:19Z")

</div>

A good place to start might be to look at the [different “flavors” of Markdown](https://github.com/JuliaLang/julia/tree/master/stdlib/Markdown/src) extending the basic Markdown module: perhaps look at `Julia` first, then `Common`, `GitHub`, or `IPython`.
