public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
From: Julianus Pfeuffer <jule.pf-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: pandoc-discuss <pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
Subject: Re: ipynb output: Choose languages to convert to code cells
Date: Tue, 21 Sep 2021 10:16:46 -0700 (PDT)	[thread overview]
Message-ID: <d0820aab-e573-4d91-a97e-1716beff5630n@googlegroups.com> (raw)
In-Reply-To: <m2wnn9hq4u.fsf-d8241O7hbXoP5tpWdHSM3tPlBySK3R6THiGdP5j34PU@public.gmane.org>


[-- Attachment #1.1: Type: text/plain, Size: 2498 bytes --]

Thanks for the quick hint. I had to lookup how to apply filters but it was 
rather straightforward (only a bit hard to infer the structure of the 
python objects from the Haskell data type documentation).
In case someone is interested, the following hacky filter worked at first 
glance.

#!/usr/local/bin/python3

"""
Pandoc filter to convert code blocks of certain language classes to code 
class
"""

from pandocfilters import *

def addCodeClass(key, value, format, meta):
  if key == 'CodeBlock':
    [[ident, classes, keyvals], code] = value
    if "python" in classes:
      classes.remove("python")
      classes.append("code")
    return CodeBlock([ident, classes, keyvals], code)

if __name__ == "__main__":
  toJSONFilter(addCodeClass)

John MacFarlane schrieb am Dienstag, 21. September 2021 um 18:04:16 UTC+2:

>
> You could use a filter to add the "code" class to, say,
> all code blocks with the "python" class.
>
> Julianus Pfeuffer <jul...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:
>
> > Hi all,
> >
> > does anyone know of a way, how to decide which code language to convert 
> to 
> > an ipynb code cell?
> > The default is "code" but of course no one would just use "code" as a 
> > language description in input formats that are not specifically written 
> for 
> > this pandoc conversion to ipynb.
> >
> > I am envisioning to be able to specify e.g. python, R as languages of my 
> > input code blocks (as long as the input format supports a language tag, 
> > e.g. Markdown or rst) which should be converted to executable code cells 
> in 
> > the notebook.
> >
> > Is this possible?
> >
> > Thanks and cheers
> > Julianus
> >
> > -- 
> > 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> > To view this discussion on the web visit 
> https://groups.google.com/d/msgid/pandoc-discuss/e539846c-74da-4636-82ea-f63cfcf8ee0bn%40googlegroups.com
> .
>

-- 
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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/d0820aab-e573-4d91-a97e-1716beff5630n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 4505 bytes --]

      parent reply	other threads:[~2021-09-21 17:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-21 13:46 Julianus Pfeuffer
     [not found] ` <e539846c-74da-4636-82ea-f63cfcf8ee0bn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-09-21 16:04   ` John MacFarlane
     [not found]     ` <m2wnn9hq4u.fsf-d8241O7hbXoP5tpWdHSM3tPlBySK3R6THiGdP5j34PU@public.gmane.org>
2021-09-21 17:16       ` Julianus Pfeuffer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d0820aab-e573-4d91-a97e-1716beff5630n@googlegroups.com \
    --to=jule.pf-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).