public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* How can I process custom LaTeX commands?
@ 2021-08-31  7:39 Rory Byrne
       [not found] ` <f238e164-9c72-4d27-a9c7-aae0222cc031n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Rory Byrne @ 2021-08-31  7:39 UTC (permalink / raw)
  To: pandoc-discuss


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

Hi friends,

I am building a LaTeX package which adds some new annotation commands for 
semantics, like `\argument{...}` or `\conclusion{...}`. I'm brand new to 
Pandoc, but I would like to parse a LaTeX file containing these commands 
into JSON output. 

I was thinking that I could write a Pandoc filter which would process those 
commands, but that doesn't seem possible.

Is there a way to use Pandoc to process a LaTeX file containing custom 
commands?

Thanks,
Rory

-- 
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/f238e164-9c72-4d27-a9c7-aae0222cc031n%40googlegroups.com.

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: How can I process custom LaTeX commands?
       [not found] ` <f238e164-9c72-4d27-a9c7-aae0222cc031n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-08-31 10:16   ` Rory Byrne
  2021-08-31 17:02   ` John MacFarlane
  1 sibling, 0 replies; 3+ messages in thread
From: Rory Byrne @ 2021-08-31 10:16 UTC (permalink / raw)
  To: pandoc-discuss


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

I've found that I can use `+raw_tex` which at least allows me to manually 
process the custom commands:

`pandoc -f latex+raw_tex -F filter.py -t native test.tex`

```
#!/usr/bin/env python
from pandocfilters import Para, Str, toJSONFilter 

def foo(key, value, format, meta):  
    if key == 'RawBlock': 
        return Para([Str(value[1])])

if __name__ == "__main__": 
    toJSONFilter(foo)
```

If there's any other approach to this kind of thing then I'd love to hear 
it!

On Tuesday, 31 August 2021 at 08:39:04 UTC+1 Rory Byrne wrote:

> Hi friends,
>
> I am building a LaTeX package which adds some new annotation commands for 
> semantics, like `\argument{...}` or `\conclusion{...}`. I'm brand new to 
> Pandoc, but I would like to parse a LaTeX file containing these commands 
> into JSON output. 
>
> I was thinking that I could write a Pandoc filter which would process 
> those commands, but that doesn't seem possible.
>
> Is there a way to use Pandoc to process a LaTeX file containing custom 
> commands?
>
> Thanks,
> Rory
>

-- 
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/bce57945-4313-4da1-a12f-8c290c709c94n%40googlegroups.com.

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: How can I process custom LaTeX commands?
       [not found] ` <f238e164-9c72-4d27-a9c7-aae0222cc031n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2021-08-31 10:16   ` Rory Byrne
@ 2021-08-31 17:02   ` John MacFarlane
  1 sibling, 0 replies; 3+ messages in thread
From: John MacFarlane @ 2021-08-31 17:02 UTC (permalink / raw)
  To: Rory Byrne, pandoc-discuss


Pandoc will handle LaTeX macros automatically.

Example:

 % pandoc -f latex
\newcommand{\argument}[1]{\textbf{#1}}

\argument{hi}
^D
<p><strong>hi</strong></p>

You don't need a filter as long as your macro definitions are
in the file being processed, or in a local sty that it includes.

Rory Byrne <rory-v7nxjtxOdhc@public.gmane.org> writes:

> Hi friends,
>
> I am building a LaTeX package which adds some new annotation commands for 
> semantics, like `\argument{...}` or `\conclusion{...}`. I'm brand new to 
> Pandoc, but I would like to parse a LaTeX file containing these commands 
> into JSON output. 
>
> I was thinking that I could write a Pandoc filter which would process those 
> commands, but that doesn't seem possible.
>
> Is there a way to use Pandoc to process a LaTeX file containing custom 
> commands?
>
> Thanks,
> Rory
>
> -- 
> 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/f238e164-9c72-4d27-a9c7-aae0222cc031n%40googlegroups.com.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-08-31 17:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-31  7:39 How can I process custom LaTeX commands? Rory Byrne
     [not found] ` <f238e164-9c72-4d27-a9c7-aae0222cc031n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-31 10:16   ` Rory Byrne
2021-08-31 17:02   ` John MacFarlane

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).