public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
From: BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org>
To: pandoc-discuss <pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
Subject: Re: filter to inject raw TeX command based on header attributes
Date: Fri, 31 Dec 2021 12:52:54 +0100	[thread overview]
Message-ID: <CADAJKhDE3NyVp=CDNczGtUkOd2mPjw6zdxRRdYd5xzgOKmLXNA@mail.gmail.com> (raw)
In-Reply-To: <CAGCXF2_r6G_sMQWmxyXKA5i29gRFLtOG5Z-WowKXkHASThsGqQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 2590 bytes --]

I think I mentioned this recently but a useful trick when using a filter to
convert most code spans/blocks into raws or something else is to use a
dummy class `.code` on those which don't have any other class(es) and
shouldn't be converted:

``````lua
local function no_code_class (it) return it ~= 'code' end

function Code (elem)
  -- Skip if it has any classes
  if 0 < #elem.classes then
    -- Remove the 'code' class
    elem.classes = elem.classes:filter(no_code_class)
    return elem
  else
    -- Do whatever you want with a "bare" Code e.g.
    return pandoc.RawInline(SOME_FORMAT, elem.text)
  end
end
``````


Den ons 29 dec. 2021 21:46bapt auguie <auguieba-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:

> Excellent, I managed to adapt it and it works a charm!
>
> Thanks,
>
> b.
>
> On Wed, 29 Dec 2021 at 20:42, John MacFarlane <jgm-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> wrote:
>
>> bapt auguie <auguieba-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:
>>
>> > I would like to walk the AST, and immediately after headers with a
>> specific
>> > attribute, inject a \renewcommand{} based on the header's attributes,
>> such
>> > as (dummy example),
>> >
>> > \renewcommand\subsection[1]{\textbf{#1}}
>>
>> This is pretty easy.  You would have a function
>>
>> function Header(el)
>>   local attr = el.attributes
>>   -- you can do attr['foo'] to get the value of the 'foo' attribute
>>   -- now create a string with the macro:
>>   local macro = ...
>>   return { el, pandoc.RawBlock("latex", macro) }
>> end
>>
>> You can fill in the blanks.
>>
>> --
> 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/CAGCXF2_r6G_sMQWmxyXKA5i29gRFLtOG5Z-WowKXkHASThsGqQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/CAGCXF2_r6G_sMQWmxyXKA5i29gRFLtOG5Z-WowKXkHASThsGqQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CADAJKhDE3NyVp%3DCDNczGtUkOd2mPjw6zdxRRdYd5xzgOKmLXNA%40mail.gmail.com.

[-- Attachment #2: Type: text/html, Size: 4636 bytes --]

      parent reply	other threads:[~2021-12-31 11:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-23 15:14 bapt auguie
     [not found] ` <CAGCXF28DUfNvU8cVDjydiqg+TUwzOhdrWL5w5xc8Ua-MXA6BBA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2021-12-29 19:41   ` John MacFarlane
     [not found]     ` <m2a6gjyza0.fsf-jF64zX8BO0+FqBokazbCQ6OPv3vYUT2dxr7GGTnW70NeoWH0uzbU5w@public.gmane.org>
2021-12-29 20:45       ` bapt auguie
     [not found]         ` <CAGCXF2_r6G_sMQWmxyXKA5i29gRFLtOG5Z-WowKXkHASThsGqQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2021-12-31 11:52           ` BPJ [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='CADAJKhDE3NyVp=CDNczGtUkOd2mPjw6zdxRRdYd5xzgOKmLXNA@mail.gmail.com' \
    --to=bpj-j3h7gcxpsitlodktgw+v6w@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).