RobertDober
Earmark is a pure-Elixir Markdown converter.
It is intended to be used as a library (just call Earmark.as_html), but can also be used as a command-line tool (run mix escript.build first).
Output generation is pluggable.
- Table Of Content
- Options
- Contributing
- Author
Trending in Announcing
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
I released Doggo, a collection of unstyled Phoenix components.
https://github.com/woylie/doggo
Features
Unstyled Phoenix components....
New
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hi everyone,
I’ve been working on this protobuf library for 3 years. We use it in the company I work for, EasyMile, to communicate with ...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
New
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
stefanchrobot
Thanks! I was using
Earmark.parseto convert MD to plaintext, but theEarmark.as_astis a much more convenient and simpler API to do the same job.RobertDober
please be aware that Earmark.parse is private now
RobertDober
BTW
1.4.0 2019/09/05
145 Expose AST for output manipulation
238 Pure Links are default now
256 Align needed Elixir Version with ex_doc (>= 1.7)
259 Deprecated option
sanitizeremoved261 Deprecated Plugins removed
265 Make deprecated
Earmark.parse/2privateedisonywh
Wow this is great news, thanks for the update here, AST is going to be incredibly useful!
MarioFlach
I’m using Earmark in my project and I’m planning to implement a few custom markups. For example, auto-link specific characters (
@mentions,#issues, etc.) and support emojis. See almightycouch/gitgud#44.The plugin mechanism as been deprecated in 1.4 and working with the AST should work just fine for implementing custom markups. I see that #27 should provide a way to render the AST as HTML.
When writing custom markups, say
@mentions for example. Should I walk the entire AST searching for a@character in each tag (third element in tuple), ignorecodeelements and build-up the new AST from there?Will a future version of Earmark provide a generic way for this kind of things? I think that most custom markups will need the same mechanism for traversing the AST and skipping content in inline code and code blocks.
Also, if I want to replace a markup with my own implementation, for example by supporting syntax highlighting in code blocks. Should I simply replace each
preAST element with my own element?RobertDober
I am really happy that folks are starting to use the AST.
I would
walkthe AST, I am planning to release such anAstWalkerin a future version, right now I am busy with exposing anAstToHtmlTransformerv1.4.1 ETA middle of this week (as you spotted correctly), but I am hunting jobs right now, so that is not sure yet.Walking the AST yourself should not be a very difficult task, have a look at things like
Macro.prewalkor look at my Traverse lib to get some ideas.Be careful if you want to use the to be released transformer though, if you change the AST’s type it will break, please remember that we are still in experimentation mode.
Summary:
yes #277 will allow you to just change the AST and get your HTML for free iff you do not change the AST’s type
Walking the AST will eventually be facilitated by tools in Earmark or maybe an associated lib, let us not forget that every project using
ex_docwill pull in all of Earmark’s code, so tools shall probably go elsewhere.Yes absolutely change e.g.
{"pre", [], [whatever]}to{"post", atts, whateverelse}just watch out for the correct type.Please keep me updated if you have any problem or question, either here or open a ticket in Earmark.
The more feedback I get, the faster the AST API will converge.
MarioFlach
Sure, this could be implemented in a separated package. Maybe a module such as
AstWalkerwill suffice to cover most cases.I was wondering if the current implementation was working with the AST internally when rendering HTML. Are
Earmark.Optionsreflected in the AST or are they only applied to the rendered HTML?In the meanwhile, can i use
Floki.raw_html/2to render the AST?RobertDober
The internal implementation does not work with the AST yet, but it is a clear goal, and also the reason why the Transformer will stay inside Earmark, as it will be used for
as_htmleventually.There are some subtle differences to Floki, which was the inspiration for the AST, it would be great if the use of Floki.raw_html/2 would work. Please let me know.
One thing I am almost sure would break Floki are comments, as Floki has a different shape for comment nodes, I did not see a reason to not have a more uniform type, so instead of
{:comment, ...}Earmark produces{:comment, [], ...}I apologize but I am too stupid to quote your questions in my answer
RobertDober
And finally, concerning the
Options.Most options are needed for the AST rendering, e.g.
pure_links:however all options concerning the inline rendering are ignored, e.g.smartypants:, and yes the Transformer will take those into account.I guess I can be more precise in the doc in the next version (or I get I nice PR maybe
)
MarioFlach
Will give it a try asap.
Just select the text you want to quote in the comment you want and click the “Quote” popover link.