public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* I think Pandoc doesn't recognize rst substitution elements at all
@ 2021-12-27 23:41 'russurquhart1' via pandoc-discuss
       [not found] ` <0d665e4c-4574-4844-b83c-8834b0df0e5dn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: 'russurquhart1' via pandoc-discuss @ 2021-12-27 23:41 UTC (permalink / raw)
  To: pandoc-discuss


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

In my ongoing efforts, I have the following in .rst:

* ``domino-build-5e67c9299c330f0008f70ad1`` is a |user-docs-base|\ 
|release|\ |user-docs-environment|. It will finish on its own and go into a 
``Completed`` state.

.. |user-docs-base| raw:: html

    <a href="https://docs.dominodatalab.com/en/

When trying to parse and save to the AST native format i get the warnings:

[WARNING] Reference not found for 'Key "user-docs-base"' at 
remove-node-from-service.rst_chunk line 1 column 61

[WARNING] Reference not found for 'Key "release"' at 
remove-node-from-service.rst_chunk line 1 column 72

[WARNING] Reference not found for 'Key "user-docs-batch-job"' at 
remove-node-from-service.rst_chunk line 1 column 95


This implies to me that the rst reader doesn't know how to handle text of:

* ``domino-build-5e67c9299c330f0008f70ad1`` is a |user-docs-base|\ 
|release|\ |user-docs-environment|. It will finish on its own and go into a 
``Completed`` state.

Is there a way I can look at the source of the .rst reader and contact the 
developer working on that?


Thanks,


Russ

-- 
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/0d665e4c-4574-4844-b83c-8834b0df0e5dn%40googlegroups.com.

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

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

* Re: I think Pandoc doesn't recognize rst substitution elements at all
       [not found] ` <0d665e4c-4574-4844-b83c-8834b0df0e5dn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-12-29 19:26   ` John MacFarlane
       [not found]     ` <m2lf03yzz6.fsf-jF64zX8BO0+FqBokazbCQ6OPv3vYUT2dxr7GGTnW70NeoWH0uzbU5w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: John MacFarlane @ 2021-12-29 19:26 UTC (permalink / raw)
  To: 'russurquhart1' via pandoc-discuss, pandoc-discuss


Source of RST reader:
https://github.com/jgm/pandoc/blob/master/src/Text/Pandoc/Readers/RST.hs

If you find a bug you should just submit a bug report on the
GitHub tracker.  If you can fix it, all the better!


"'russurquhart1' via pandoc-discuss"
<pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> writes:

> In my ongoing efforts, I have the following in .rst:
>
> * ``domino-build-5e67c9299c330f0008f70ad1`` is a |user-docs-base|\ 
> |release|\ |user-docs-environment|. It will finish on its own and go into a 
> ``Completed`` state.
>
> .. |user-docs-base| raw:: html
>
>     <a href="https://docs.dominodatalab.com/en/
>
> When trying to parse and save to the AST native format i get the warnings:
>
> [WARNING] Reference not found for 'Key "user-docs-base"' at 
> remove-node-from-service.rst_chunk line 1 column 61
>
> [WARNING] Reference not found for 'Key "release"' at 
> remove-node-from-service.rst_chunk line 1 column 72
>
> [WARNING] Reference not found for 'Key "user-docs-batch-job"' at 
> remove-node-from-service.rst_chunk line 1 column 95
>
>
> This implies to me that the rst reader doesn't know how to handle text of:
>
> * ``domino-build-5e67c9299c330f0008f70ad1`` is a |user-docs-base|\ 
> |release|\ |user-docs-environment|. It will finish on its own and go into a 
> ``Completed`` state.
>
> Is there a way I can look at the source of the .rst reader and contact the 
> developer working on that?
>
>
> Thanks,
>
>
> Russ
>
> -- 
> 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/0d665e4c-4574-4844-b83c-8834b0df0e5dn%40googlegroups.com.


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

* Re: I think Pandoc doesn't recognize rst substitution elements at all
       [not found]     ` <m2lf03yzz6.fsf-jF64zX8BO0+FqBokazbCQ6OPv3vYUT2dxr7GGTnW70NeoWH0uzbU5w@public.gmane.org>
@ 2021-12-30 15:13       ` 'russurquhart1' via pandoc-discuss
  0 siblings, 0 replies; 3+ messages in thread
From: 'russurquhart1' via pandoc-discuss @ 2021-12-30 15:13 UTC (permalink / raw)
  To: pandoc-discuss


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

Thanks! A while back I meant to try and learn Haskell, but broke down and 
learned xslt instead. This might be the time!

For the moment i'm writing my filters in Snobol4/Spitbol, fwiw!

Thanks again,

Russ

On Wednesday, December 29, 2021 at 1:26:36 PM UTC-6 John MacFarlane wrote:

>
> Source of RST reader:
> https://github.com/jgm/pandoc/blob/master/src/Text/Pandoc/Readers/RST.hs
>
> If you find a bug you should just submit a bug report on the
> GitHub tracker. If you can fix it, all the better!
>
>
> "'russurquhart1' via pandoc-discuss"
> <pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> writes:
>
> > In my ongoing efforts, I have the following in .rst:
> >
> > * ``domino-build-5e67c9299c330f0008f70ad1`` is a |user-docs-base|\ 
> > |release|\ |user-docs-environment|. It will finish on its own and go 
> into a 
> > ``Completed`` state.
> >
> > .. |user-docs-base| raw:: html
> >
> > <a href="https://docs.dominodatalab.com/en/
> >
> > When trying to parse and save to the AST native format i get the 
> warnings:
> >
> > [WARNING] Reference not found for 'Key "user-docs-base"' at 
> > remove-node-from-service.rst_chunk line 1 column 61
> >
> > [WARNING] Reference not found for 'Key "release"' at 
> > remove-node-from-service.rst_chunk line 1 column 72
> >
> > [WARNING] Reference not found for 'Key "user-docs-batch-job"' at 
> > remove-node-from-service.rst_chunk line 1 column 95
> >
> >
> > This implies to me that the rst reader doesn't know how to handle text 
> of:
> >
> > * ``domino-build-5e67c9299c330f0008f70ad1`` is a |user-docs-base|\ 
> > |release|\ |user-docs-environment|. It will finish on its own and go 
> into a 
> > ``Completed`` state.
> >
> > Is there a way I can look at the source of the .rst reader and contact 
> the 
> > developer working on that?
> >
> >
> > Thanks,
> >
> >
> > Russ
> >
> > -- 
> > 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/0d665e4c-4574-4844-b83c-8834b0df0e5dn%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/85dc8d3e-9097-4746-af13-34fa604a86e2n%40googlegroups.com.

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

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

end of thread, other threads:[~2021-12-30 15:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-27 23:41 I think Pandoc doesn't recognize rst substitution elements at all 'russurquhart1' via pandoc-discuss
     [not found] ` <0d665e4c-4574-4844-b83c-8834b0df0e5dn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-12-29 19:26   ` John MacFarlane
     [not found]     ` <m2lf03yzz6.fsf-jF64zX8BO0+FqBokazbCQ6OPv3vYUT2dxr7GGTnW70NeoWH0uzbU5w@public.gmane.org>
2021-12-30 15:13       ` 'russurquhart1' via pandoc-discuss

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