BillBryson
I’m trying to customize the outputted p tag when using Earmark.as_html!/2.
For example, I’d like this input:
Earmark.as_html!("Hello world")
To return: <p style="color: #000000;">Hello world</p>. Here the color is applied dynamically. I was looking through the docs but did not see something that would fit my needs, perhaps I missed it? Any help would be appreciated.
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
outlog
I’m using the code/gist from @neuone from here Earmark - add my own class names to the default set of markdown tags - #3 by neuone to customize earmark output..
only caveat is it’s stopped working on latest earmark, so currently locked at {:earmark, “1.4.4”}, and haven’t had time to figure what the issue/solution is, most likely something trivial..
mine looks like this:
you use like this:
BillBryson
Thank you - this is interesting. I’m trying to use this too, but the
parsefunction doesn’t seem to work for me as-is. I’ve had to update it to take a 4th argument.Maybe I’m not doing something correctly.
neuone
I haven’t looked at this code for awhile.
What I remember is I want to be able to supply my own CSS class names on certain HTML tags. And this was global meaning any HTML tags that matched would get updated.
This was all so I could control the formatted output of a Markdown blog system
Examples
If it encounters an
<H1>tag just add the css class"mw7 lh-copy"to all<H1>tags.If it encounters any
<IMG>tags add the css class".lazy"to all<IMG>tags.If it encounters any
<p>tag add the css class"py-2"to all<P>tagsYour example
It looks like you want the ability to pass in some specific String “Hello World” and have it wrap itself around a specific tag
<p>with a specific css attributestyle="color: #000000;"?Is my assumption correct?
BillBryson
Yes, that’s correct.
It looks like this will work, only in my app the
parsefunction breaks unless it’s a tuple with 4 elements.neuone
Sounds like you want to pattern match for the sentence
"Hello World"and then apply some custom CSS style around that sentence. This parser is not intended to do that type of work.BillBryson
Sorry, I misread. Not a specific string of “hello world”. I want apply a style to all these
ptags. This solution works, I just required a 4 element tuple in place of a 3 element one for theparsefunction, which the example provided.Thank you for your help.
RobertDober
Sorry for blending in so late, but I needed some time to get my focus back on Earmark
As a matter of fact the split of EarmarkParser was also motivated by giving Earmark more liberties to create code that is not needed by ex_doc and its zillions of users
Therefor I have started to implement an Ast Walker and the option to integrate an Ast Postprocessor
A good starting point on how to use it is here:
https://github.com/pragdave/earmark/blob/i398_ast_post_processing/test/acceptance/postprocessor_test.exs
As this is WIP please do not hesistate to give me some input what might be better or more useful.
Sorry no doc yet, but I need the feature to be stable first.
Here is the implementation:
postprocess option
and Ast Walker
RobertDober
Starting to remove recursion from transforming the AST, first step
iterative version of
_walkjust in case someone spotted the danger in the code