public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* Additional <p></p> added when using {=html} on new line
@ 2019-10-28  4:12 Jeff Mcneill
       [not found] ` <4c4c5e0f-c105-4de1-a3cb-6347700b1325-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Mcneill @ 2019-10-28  4:12 UTC (permalink / raw)
  To: pandoc-discuss


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

When using Markdown to Epub:

Code:

`<p style="text-align:center"><img 
> src="politics/analects/images/figure-analects-02.jpg" /></p>`{=html}


I get the following in the Epub file:

<p><p style="text-align:center"><img 
> src="politics/analects/images/figure-analects-02.jpg" /></p></p>


Expected:

<p style="text-align:center"><img 
> src="politics/analects/images/figure-analects-02.jpg" /></p>


The main issue here is that I need to style the paragraph text to get the 
image to center within it.

Any thoughts?

Sincerely,
Jeff Mcneill

-- 
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/4c4c5e0f-c105-4de1-a3cb-6347700b1325%40googlegroups.com.

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

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

* Re: Additional <p></p> added when using {=html} on new line
       [not found] ` <4c4c5e0f-c105-4de1-a3cb-6347700b1325-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2019-10-28  8:16   ` BPJ
       [not found]     ` <CADAJKhB9m=-TC4DP9Ru=_vHvqQUzUR7=fjZOh9eXEWcYkMXabA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: BPJ @ 2019-10-28  8:16 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

You should use a raw block rather than a raw inline:

```{=html}
<p>...</p>
```


Den mån 28 okt. 2019 05:13Jeff Mcneill <jeffmcneill-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> skrev:

> When using Markdown to Epub:
>
> Code:
>
> `<p style="text-align:center"><img
>> src="politics/analects/images/figure-analects-02.jpg" /></p>`{=html}
>
>
> I get the following in the Epub file:
>
> <p><p style="text-align:center"><img
>> src="politics/analects/images/figure-analects-02.jpg" /></p></p>
>
>
> Expected:
>
> <p style="text-align:center"><img
>> src="politics/analects/images/figure-analects-02.jpg" /></p>
>
>
> The main issue here is that I need to style the paragraph text to get the
> image to center within it.
>
> Any thoughts?
>
> Sincerely,
> Jeff Mcneill
>
> --
> 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/4c4c5e0f-c105-4de1-a3cb-6347700b1325%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/4c4c5e0f-c105-4de1-a3cb-6347700b1325%40googlegroups.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/CADAJKhB9m%3D-TC4DP9Ru%3D_vHvqQUzUR7%3DfjZOh9eXEWcYkMXabA%40mail.gmail.com.

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

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

* Re: Additional <p></p> added when using {=html} on new line
       [not found]     ` <CADAJKhB9m=-TC4DP9Ru=_vHvqQUzUR7=fjZOh9eXEWcYkMXabA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2019-10-28 11:01       ` Jeff Mcneill
       [not found]         ` <373f39be-3429-4f78-b544-ce0cf809175c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Mcneill @ 2019-10-28 11:01 UTC (permalink / raw)
  To: pandoc-discuss


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

Hi, I can't do that (use a raw code block), as with Latex output, I get the 
raw text (not html). I have an alternate {=latex} line for the same thing, 
in latex syntax. 

It does seem that, unless there is an alternate way to put a style or class 
header on an implicitly generated <p>, the behavior here is not as expected 
(that is, any {=html} should be interpreted as literal and not itself be 
formated).

I will file an issue in Github to see if that is a bug, feature, or other.

Sincerely,
Jeff

On Monday, October 28, 2019 at 3:16:58 PM UTC+7, BP wrote:
>
> You should use a raw block rather than a raw inline:
>
> ```{=html}
> <p>...</p>
> ```
>
>
> Den mån 28 okt. 2019 05:13Jeff Mcneill <jeffm...-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org 
> <javascript:>> skrev:
>
>> When using Markdown to Epub:
>>
>> Code:
>>
>> `<p style="text-align:center"><img 
>>> src="politics/analects/images/figure-analects-02.jpg" /></p>`{=html}
>>
>>
>> I get the following in the Epub file:
>>
>> <p><p style="text-align:center"><img 
>>> src="politics/analects/images/figure-analects-02.jpg" /></p></p>
>>
>>
>> Expected:
>>
>> <p style="text-align:center"><img 
>>> src="politics/analects/images/figure-analects-02.jpg" /></p>
>>
>>
>> The main issue here is that I need to style the paragraph text to get the 
>> image to center within it.
>>
>> Any thoughts?
>>
>> Sincerely,
>> Jeff Mcneill
>>
>> -- 
>>
>

-- 
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/373f39be-3429-4f78-b544-ce0cf809175c%40googlegroups.com.

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

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

* Re: Additional <p></p> added when using {=html} on new line
       [not found]         ` <373f39be-3429-4f78-b544-ce0cf809175c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2019-10-28 16:37           ` Benct Philip Jonsson
  2019-10-28 17:01           ` John MacFarlane
  2019-10-28 17:03           ` Benct Philip Jonsson
  2 siblings, 0 replies; 8+ messages in thread
From: Benct Philip Jonsson @ 2019-10-28 16:37 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

The thing is that since a raw inline is an inline it gets placed in a 
paragraph while a raw block does not.  It doesn't matter what the raw 
inline contains, only what **Pandoc** type it is, i.e. inline vs. block.

Pandoc allows you to style divs, headings, code blocks, spans, inline 
code, images and links directly.
The Pandoc way to styling arbitrary elements is to wrap them in a div or 
span which carries the attributes and then use a child selector in 
external CSS.  That way you need not use raw content at all:

````markdown
::: {.center}
![](politics/analects/images/figure-analects-02.jpg)
:::
````

````html
<div class="center">
<p><img src="politics/analects/images/figure-analects-02.jpg" /></p>
</div>
````

````css
div.center p { text-align: center }
````

To get a centered image in LaTeX as well you can use a simple Lua filter
which wraps any div with class "center" in the appropriate raw LaTeX,
which keeps your Markdown uncluttered.


````lua
function Div (div)
     if div.classes:includes('center') then
         return {
             pandoc.RawBlock('latex', '\\begin{center}'),
             div,
             pandoc.RawBlock('latex', '\\end{center}'),
         }
     end
     return nil
end
````

````latex
\begin{center}

\includegraphics{politics/analects/images/figure-analects-02.jpg}

\end{center}
````

If you want to insert the LaTeX code directly into the Markdown you 
should do this:

````````markdown
```{=latex}
\begin{center}
```

\includegraphics{politics/analects/images/figure-analects-02.jpg}

```{=latex}
\end{center}
```
````````

<https://pandoc.org/MANUAL.html#divs-and-spans>

<https://pandoc.org/MANUAL.html#option--lua-filter>

On 2019-10-28 12:01, Jeff Mcneill wrote:
> Hi, I can't do that (use a raw code block), as with Latex output, I get the
> raw text (not html). I have an alternate {=latex} line for the same thing,
> in latex syntax.
> 
> It does seem that, unless there is an alternate way to put a style or class
> header on an implicitly generated <p>, the behavior here is not as expected
> (that is, any {=html} should be interpreted as literal and not itself be
> formated).
> 
> I will file an issue in Github to see if that is a bug, feature, or other.
> 
> Sincerely,
> Jeff
> 
> On Monday, October 28, 2019 at 3:16:58 PM UTC+7, BP wrote:
>>
>> You should use a raw block rather than a raw inline:
>>
>> ```{=html}
>> <p>...</p>
>> ```
>>
>>
>> Den mån 28 okt. 2019 05:13Jeff Mcneill <jeffm...-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org
>> <javascript:>> skrev:
>>
>>> When using Markdown to Epub:
>>>
>>> Code:
>>>
>>> `<p style="text-align:center"><img
>>>> src="politics/analects/images/figure-analects-02.jpg" /></p>`{=html}
>>>
>>>
>>> I get the following in the Epub file:
>>>
>>> <p><p style="text-align:center"><img
>>>> src="politics/analects/images/figure-analects-02.jpg" /></p></p>
>>>
>>>
>>> Expected:
>>>
>>> <p style="text-align:center"><img
>>>> src="politics/analects/images/figure-analects-02.jpg" /></p>
>>>
>>>
>>> The main issue here is that I need to style the paragraph text to get the
>>> image to center within it.
>>>
>>> Any thoughts?
>>>
>>> Sincerely,
>>> Jeff Mcneill
>>>
>>> -- 
>>>
>>
> 

-- 
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/7b2eeb4c-c08c-40ce-9fbc-8eb08f136069%40gmail.com.


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

* Re: Additional <p></p> added when using {=html} on new line
       [not found]         ` <373f39be-3429-4f78-b544-ce0cf809175c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2019-10-28 16:37           ` Benct Philip Jonsson
@ 2019-10-28 17:01           ` John MacFarlane
  2019-10-28 17:03           ` Benct Philip Jonsson
  2 siblings, 0 replies; 8+ messages in thread
From: John MacFarlane @ 2019-10-28 17:01 UTC (permalink / raw)
  To: Jeff Mcneill, pandoc-discuss


It's not a bug.  You're using the syntax for inserting raw INLINE
content, so pandoc treats it as such.

If you just write

<p style="text-align:center"><img src="blah"/> blah</p>

in the markdown, this will come out as raw HTML.  If you also
need to produce LaTeX, you can use a raw HTML followed by a raw
LaTeX block; only the one appropriate for the target format will
be emitted.

But as noted, it's better to use pandoc's native divs.

Jeff Mcneill <jeffmcneill-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> writes:

> Hi, I can't do that (use a raw code block), as with Latex output, I get the 
> raw text (not html). I have an alternate {=latex} line for the same thing, 
> in latex syntax. 
>
> It does seem that, unless there is an alternate way to put a style or class 
> header on an implicitly generated <p>, the behavior here is not as expected 
> (that is, any {=html} should be interpreted as literal and not itself be 
> formated).
>
> I will file an issue in Github to see if that is a bug, feature, or other.
>
> Sincerely,
> Jeff
>
> On Monday, October 28, 2019 at 3:16:58 PM UTC+7, BP wrote:
>>
>> You should use a raw block rather than a raw inline:
>>
>> ```{=html}
>> <p>...</p>
>> ```
>>
>>
>> Den mån 28 okt. 2019 05:13Jeff Mcneill <jeffm...-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org 
>> <javascript:>> skrev:
>>
>>> When using Markdown to Epub:
>>>
>>> Code:
>>>
>>> `<p style="text-align:center"><img 
>>>> src="politics/analects/images/figure-analects-02.jpg" /></p>`{=html}
>>>
>>>
>>> I get the following in the Epub file:
>>>
>>> <p><p style="text-align:center"><img 
>>>> src="politics/analects/images/figure-analects-02.jpg" /></p></p>
>>>
>>>
>>> Expected:
>>>
>>> <p style="text-align:center"><img 
>>>> src="politics/analects/images/figure-analects-02.jpg" /></p>
>>>
>>>
>>> The main issue here is that I need to style the paragraph text to get the 
>>> image to center within it.
>>>
>>> Any thoughts?
>>>
>>> Sincerely,
>>> Jeff Mcneill
>>>
>>> -- 
>>>
>>
>
> -- 
> 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/373f39be-3429-4f78-b544-ce0cf809175c%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/m2woco6byy.fsf%40johnmacfarlane.net.


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

* Re: Additional <p></p> added when using {=html} on new line
       [not found]         ` <373f39be-3429-4f78-b544-ce0cf809175c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2019-10-28 16:37           ` Benct Philip Jonsson
  2019-10-28 17:01           ` John MacFarlane
@ 2019-10-28 17:03           ` Benct Philip Jonsson
       [not found]             ` <7ffa121d-fb1c-206c-f97f-4a2f89862b77-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  2 siblings, 1 reply; 8+ messages in thread
From: Benct Philip Jonsson @ 2019-10-28 17:03 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

I wrote:

> If you want to insert the LaTeX code directly into the Markdown you should do this:
>
> ````````markdown
> ```{=latex}
> \begin{center}
> ```
>
> \includegraphics{politics/analects/images/figure-analects-02.jpg}
>
> ```{=latex}
> \end{center}
> ```
> ```````` 

That should of course have been:

If you want to insert the LaTeX code directly into the Markdown you 
should do this:

````````markdown
```{=latex}
\begin{center}
```

::: {.center}
![](politics/analects/images/figure-analects-02.jpg)
:::

```{=latex}
\end{center}
```
````````

Sorry for the confusion!


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

* Re: Additional <p></p> added when using {=html} on new line
       [not found]             ` <7ffa121d-fb1c-206c-f97f-4a2f89862b77-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2019-10-29  2:47               ` Jeff Mcneill
       [not found]                 ` <8cfdffdd-9319-4d8d-9cf1-c76636a3d3c2-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Mcneill @ 2019-10-29  2:47 UTC (permalink / raw)
  To: pandoc-discuss


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

Hello,

The inline stuff is fine with markup of a p when dealing with images, but 
not with text, which comes through in the md->pdf but without center 
alignment. I understand it should be ignored, but it is not. Secondly, 
putting classes on divs is not working on some epub readers for centering 
(only on the p).

I did a workaround of putting my text into an image, and that works out 
(this is for the dinkus/asterism), though the problem still persists of 
text being markedup in div or p not being ignored by latex when md->pdf.

working code:

~~~~
<p class="center"><img src="dinkus.png" /></p>
`\begin{center} ∗ ∗ ∗ \end{center}`{=latex}
~~~~

Sincerely,
Jeff Mcneill

On Tuesday, October 29, 2019 at 12:03:07 AM UTC+7, BP wrote:
>
> I wrote: 
>
> > If you want to insert the LaTeX code directly into the Markdown you 
> should do this: 
> > 
> > ````````markdown 
> > ```{=latex} 
> > \begin{center} 
> > ``` 
> > 
> > \includegraphics{politics/analects/images/figure-analects-02.jpg} 
> > 
> > ```{=latex} 
> > \end{center} 
> > ``` 
> > ```````` 
>
> That should of course have been: 
>
> If you want to insert the LaTeX code directly into the Markdown you 
> should do this: 
>
> ````````markdown 
> ```{=latex} 
> \begin{center} 
> ``` 
>
> ::: {.center} 
> ![](politics/analects/images/figure-analects-02.jpg) 
> ::: 
>
> ```{=latex} 
> \end{center} 
> ``` 
> ```````` 
>
> Sorry for the confusion! 
>
>

-- 
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/8cfdffdd-9319-4d8d-9cf1-c76636a3d3c2%40googlegroups.com.

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

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

* Re: Additional <p></p> added when using {=html} on new line
       [not found]                 ` <8cfdffdd-9319-4d8d-9cf1-c76636a3d3c2-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2019-10-29  6:03                   ` Jeff Mcneill
  0 siblings, 0 replies; 8+ messages in thread
From: Jeff Mcneill @ 2019-10-29  6:03 UTC (permalink / raw)
  To: pandoc-discuss


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

Ok, I understand now to use:

~~~~
``` {=html}
stuff here
```
~~~~

Instead of

~~~~
`stuff here` {=html}
~~~~

If I don't want things wrapped in a `<p></p>`.

Thanks for the explanations.

Sincerely,
Jeff Mcneill

On Tuesday, October 29, 2019 at 9:47:23 AM UTC+7, Jeff Mcneill wrote:
>
> Hello,
>
> The inline stuff is fine with markup of a p when dealing with images, but 
> not with text, which comes through in the md->pdf but without center 
> alignment. I understand it should be ignored, but it is not. Secondly, 
> putting classes on divs is not working on some epub readers for centering 
> (only on the p).
>
> I did a workaround of putting my text into an image, and that works out 
> (this is for the dinkus/asterism), though the problem still persists of 
> text being markedup in div or p not being ignored by latex when md->pdf.
>
> working code:
>
> ~~~~
> <p class="center"><img src="dinkus.png" /></p>
> `\begin{center} ∗ ∗ ∗ \end{center}`{=latex}
> ~~~~
>
> Sincerely,
> Jeff Mcneill
>
> On Tuesday, October 29, 2019 at 12:03:07 AM UTC+7, BP wrote:
>>
>> I wrote: 
>>
>> > If you want to insert the LaTeX code directly into the Markdown you 
>> should do this: 
>> > 
>> > ````````markdown 
>> > ```{=latex} 
>> > \begin{center} 
>> > ``` 
>> > 
>> > \includegraphics{politics/analects/images/figure-analects-02.jpg} 
>> > 
>> > ```{=latex} 
>> > \end{center} 
>> > ``` 
>> > ```````` 
>>
>> That should of course have been: 
>>
>> If you want to insert the LaTeX code directly into the Markdown you 
>> should do this: 
>>
>> ````````markdown 
>> ```{=latex} 
>> \begin{center} 
>> ``` 
>>
>> ::: {.center} 
>> ![](politics/analects/images/figure-analects-02.jpg) 
>> ::: 
>>
>> ```{=latex} 
>> \end{center} 
>> ``` 
>> ```````` 
>>
>> Sorry for the confusion! 
>>
>>

-- 
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/0b4ab308-4c5e-4893-8f00-eccab5fe9949%40googlegroups.com.

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

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

end of thread, other threads:[~2019-10-29  6:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-28  4:12 Additional <p></p> added when using {=html} on new line Jeff Mcneill
     [not found] ` <4c4c5e0f-c105-4de1-a3cb-6347700b1325-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2019-10-28  8:16   ` BPJ
     [not found]     ` <CADAJKhB9m=-TC4DP9Ru=_vHvqQUzUR7=fjZOh9eXEWcYkMXabA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-10-28 11:01       ` Jeff Mcneill
     [not found]         ` <373f39be-3429-4f78-b544-ce0cf809175c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2019-10-28 16:37           ` Benct Philip Jonsson
2019-10-28 17:01           ` John MacFarlane
2019-10-28 17:03           ` Benct Philip Jonsson
     [not found]             ` <7ffa121d-fb1c-206c-f97f-4a2f89862b77-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2019-10-29  2:47               ` Jeff Mcneill
     [not found]                 ` <8cfdffdd-9319-4d8d-9cf1-c76636a3d3c2-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2019-10-29  6:03                   ` Jeff Mcneill

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