I use a div with a class and a filter which removes divs with that class like this:

````markdown
:::answer
**Answer:** 42.
:::
````

````lua
function Div (elem)
  if elem.classes:includes('answer') then
    return {} -- delete it
  else
    return elem
  end
end
````

HTH,

/bpj

Den lör 6 apr. 2019 18:44pbeltran <pabelpe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
My purpose is to generate two versions from the same markdown file. Think in a worksheet or a set of reveal slides with and without solutions.

If I use gpp, like suggested here, the math expressions in my .md (mathjax) get messed, since \ are escaped.

Is there a way out of the box? For instance, by using custom fenced_divs and them telling pandoc to remove that specific div? I've taken a look at custom filters but I don't know haskell...

Thanks

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm.
To post to this group, send email to pandoc-discuss@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/61bdaf46-d88a-4ef1-b145-71ad5900fed8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBNWpmcKAAaNw_xo_EeT-JWKVPcnFo9EdDfzyA0%2BFpydw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.