public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* Problem When Transcribing Greek HTML Letters to LaTex
@ 2019-04-11 23:08 totyped-Re5JQEeQqe8AvxtiuMwx3w
       [not found] ` <4160d0dd-940f-405e-9ecb-0f1eca421b14-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 10+ messages in thread
From: totyped-Re5JQEeQqe8AvxtiuMwx3w @ 2019-04-11 23:08 UTC (permalink / raw)
  To: pandoc-discuss


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

I have also posted this issue on stackoverflow 
: https://stackoverflow.com/q/55642183/6114310

I have the following HTML string:
    s = "I have : <i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i>"

Now, I would like to convert it to LaTex. To do so, I am using 
[pypandoc][1]. 

    import pypandoc
    text = pypandoc.convert_text(s,'latex', format = "html", extra_args = 
['--wrap=preserve'] )
    text

I get:
    I have : \emph{1,w\textgreater{} + 2,w\textgreater{}}\r\n

Which in human-readable LaTex become:

[image: Capture.JPG]


[![enter image description here][2]][2]

**Anyone knows how to fix it ?** 

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/4160d0dd-940f-405e-9ecb-0f1eca421b14%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

[-- Attachment #2: Capture.JPG --]
[-- Type: image/jpeg, Size: 1715 bytes --]

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

* Re: Problem When Transcribing Greek HTML Letters to LaTex
       [not found] ` <4160d0dd-940f-405e-9ecb-0f1eca421b14-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2019-04-12  0:04   ` John MacFarlane
       [not found]     ` <yh480k8swgxf5n.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
  2019-04-12 20:31   ` Kolen Cheung
  1 sibling, 1 reply; 10+ messages in thread
From: John MacFarlane @ 2019-04-12  0:04 UTC (permalink / raw)
  To: totyped-Re5JQEeQqe8AvxtiuMwx3w, pandoc-discuss


The main issue is that this isn't really valid HTML.  The
'<' should be escaped as '&lt;'.

When you fix that it gives better results:

% pandoc -f html -t latex
&lt;λv<sub>1</sub>,w&gt; + &lt;<sub>2</sub>,w
^D
\textless λv\textsubscript{1},w\textgreater{} + \textless{}\textsubscript{2},w



totyped-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org writes:

> I have also posted this issue on stackoverflow 
> : https://stackoverflow.com/q/55642183/6114310
>
> I have the following HTML string:
>     s = "I have : <i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i>"
>
> Now, I would like to convert it to LaTex. To do so, I am using 
> [pypandoc][1]. 
>
>     import pypandoc
>     text = pypandoc.convert_text(s,'latex', format = "html", extra_args = 
> ['--wrap=preserve'] )
>     text
>
> I get:
>     I have : \emph{1,w\textgreater{} + 2,w\textgreater{}}\r\n
>
> Which in human-readable LaTex become:
>
> [image: Capture.JPG]
>
>
> [![enter image description here][2]][2]
>
> **Anyone knows how to fix it ?** 
>
> -- 
> 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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/4160d0dd-940f-405e-9ecb-0f1eca421b14%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/yh480k8swgxf5n.fsf%40johnmacfarlane.net.
For more options, visit https://groups.google.com/d/optout.


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

* Re: Problem When Transcribing Greek HTML Letters to LaTex
       [not found]     ` <yh480k8swgxf5n.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
@ 2019-04-12  3:27       ` totyped-Re5JQEeQqe8AvxtiuMwx3w
       [not found]         ` <885bafeb-28cc-4f7f-ad1f-f7708ed8fb4d-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 10+ messages in thread
From: totyped-Re5JQEeQqe8AvxtiuMwx3w @ 2019-04-12  3:27 UTC (permalink / raw)
  To: pandoc-discuss


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

I see, thank you very much for your help ! 
So, you replaced basically all `<`with `&lt`, correct ? 

Also: Do you understand, why, if you go on my Stackoverflow question 
https://stackoverflow.com/q/55642183/6114310, the string can be perfectly 
represented, if I just type it as is into Stackoverflow ? 


On Friday, April 12, 2019 at 2:04:38 AM UTC+2, John MacFarlane wrote:
>
>
> The main issue is that this isn't really valid HTML.  The 
> '<' should be escaped as '&lt;'. 
>
> When you fix that it gives better results: 
>
> % pandoc -f html -t latex 
> &lt;λv<sub>1</sub>,w&gt; + &lt;<sub>2</sub>,w 
> ^D 
> \textless λv\textsubscript{1},w\textgreater{} + 
> \textless{}\textsubscript{2},w 
>
>
>
> tot...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <javascript:> writes: 
>
> > I have also posted this issue on stackoverflow 
> > : https://stackoverflow.com/q/55642183/6114310 
> > 
> > I have the following HTML string: 
> >     s = "I have : <i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i>" 
> > 
> > Now, I would like to convert it to LaTex. To do so, I am using 
> > [pypandoc][1]. 
> > 
> >     import pypandoc 
> >     text = pypandoc.convert_text(s,'latex', format = "html", extra_args 
> = 
> > ['--wrap=preserve'] ) 
> >     text 
> > 
> > I get: 
> >     I have : \emph{1,w\textgreater{} + 2,w\textgreater{}}\r\n 
> > 
> > Which in human-readable LaTex become: 
> > 
> > [image: Capture.JPG] 
> > 
> > 
> > [![enter image description here][2]][2] 
> > 
> > **Anyone knows how to fix it ?** 
> > 
> > -- 
> > 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-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> > To post to this group, send email to pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> <javascript:>. 
> > To view this discussion on the web visit 
> https://groups.google.com/d/msgid/pandoc-discuss/4160d0dd-940f-405e-9ecb-0f1eca421b14%40googlegroups.com. 
>
> > For more options, visit https://groups.google.com/d/optout. 
>

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/885bafeb-28cc-4f7f-ad1f-f7708ed8fb4d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* Re: Problem When Transcribing Greek HTML Letters to LaTex
       [not found]         ` <885bafeb-28cc-4f7f-ad1f-f7708ed8fb4d-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2019-04-12  4:54           ` John MacFarlane
       [not found]             ` <m2y34fvn5t.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
  2019-04-12 12:28           ` Joseph Reagle
  1 sibling, 1 reply; 10+ messages in thread
From: John MacFarlane @ 2019-04-12  4:54 UTC (permalink / raw)
  To: totyped-Re5JQEeQqe8AvxtiuMwx3w, pandoc-discuss

totyped-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org writes:

> I see, thank you very much for your help ! 
> So, you replaced basically all `<`with `&lt`, correct ? 

All the < except the ones that are parts of HTML tags.

> Also: Do you understand, why, if you go on my Stackoverflow question 
> https://stackoverflow.com/q/55642183/6114310, the string can be perfectly 
> represented, if I just type it as is into Stackoverflow ? 

StackOverflow is parsing as Markdown, which allows raw HTML.
And it's more forgiving of invalid HTML, apparently,
than pandoc's HTML parser.

Interestingly, pandoc does the same thing. If you read
markdown, it allows this:

% pandoc -f markdown -t latex
<i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i>
\textless λv1,w\textgreater{} + \textless v2,w\textgreater{}

Here the emphasis disappears, though, because teh HTML
tag <i> is parsed as raw HTML which won't be passed
through to latex:

% pandoc -f markdown -t native
<i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i>
[Para [RawInline (Format "html") "<i>",Str "<\955v",RawInline (Format "html") "<sub>",Str "1",RawInline (Format "html") "</sub>",Str ",w>",Space,Str "+",Space,Str "<v",RawInline (Format "html") "<sub>",Str "2",RawInline (Format "html") "</sub>",Str ",w>",RawInline (Format "html") "</i>"]]

But if you read HTML, it doesn't like the unescaped <.

% pandoc -f html -t latex
\emph{1,w\textgreater{} + 2,w\textgreater{}}

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/m2y34fvn5t.fsf%40johnmacfarlane.net.
For more options, visit https://groups.google.com/d/optout.


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

* Re: Problem When Transcribing Greek HTML Letters to LaTex
       [not found]         ` <885bafeb-28cc-4f7f-ad1f-f7708ed8fb4d-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2019-04-12  4:54           ` John MacFarlane
@ 2019-04-12 12:28           ` Joseph Reagle
  1 sibling, 0 replies; 10+ messages in thread
From: Joseph Reagle @ 2019-04-12 12:28 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

On 4/11/19 11:27 PM, totyped-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:
> So, you replaced basically all `<`with `&lt`, correct ?

Don't forget the semi-colon at the end.


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

* Re: Problem When Transcribing Greek HTML Letters to LaTex
       [not found]             ` <m2y34fvn5t.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
@ 2019-04-12 13:56               ` totyped-Re5JQEeQqe8AvxtiuMwx3w
       [not found]                 ` <7711d138-8d66-44bb-bc74-d3102bfe30d1-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 10+ messages in thread
From: totyped-Re5JQEeQqe8AvxtiuMwx3w @ 2019-04-12 13:56 UTC (permalink / raw)
  To: pandoc-discuss


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

Thanks a lot for your comments.
Interesting, if I do the same thing with pypandoc, it does not work:

s = "I have : <i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i>"
text = pypandoc.convert_text(s,'latex', format = "markdown", extra_args = 
['--wrap=preserve'] )

'I have : 1,w\\textgreater{} + 2,w\\textgreater{}\r\n'



On Friday, April 12, 2019 at 6:54:37 AM UTC+2, John MacFarlane wrote:
>
> tot...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <javascript:> writes: 
>
> > I see, thank you very much for your help ! 
> > So, you replaced basically all `<`with `&lt`, correct ? 
>
> All the < except the ones that are parts of HTML tags. 
>
> > Also: Do you understand, why, if you go on my Stackoverflow question 
> > https://stackoverflow.com/q/55642183/6114310, the string can be 
> perfectly 
> > represented, if I just type it as is into Stackoverflow ? 
>
> StackOverflow is parsing as Markdown, which allows raw HTML. 
> And it's more forgiving of invalid HTML, apparently, 
> than pandoc's HTML parser. 
>
> Interestingly, pandoc does the same thing. If you read 
> markdown, it allows this: 
>
> % pandoc -f markdown -t latex 
> <i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i> 
> \textless λv1,w\textgreater{} + \textless v2,w\textgreater{} 
>
> Here the emphasis disappears, though, because teh HTML 
> tag <i> is parsed as raw HTML which won't be passed 
> through to latex: 
>
> % pandoc -f markdown -t native 
> <i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i> 
> [Para [RawInline (Format "html") "<i>",Str "<\955v",RawInline (Format 
> "html") "<sub>",Str "1",RawInline (Format "html") "</sub>",Str 
> ",w>",Space,Str "+",Space,Str "<v",RawInline (Format "html") "<sub>",Str 
> "2",RawInline (Format "html") "</sub>",Str ",w>",RawInline (Format "html") 
> "</i>"]] 
>
> But if you read HTML, it doesn't like the unescaped <. 
>
> % pandoc -f html -t latex 
> \emph{1,w\textgreater{} + 2,w\textgreater{}} 
>
>

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/7711d138-8d66-44bb-bc74-d3102bfe30d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* Re: Problem When Transcribing Greek HTML Letters to LaTex
       [not found]                 ` <7711d138-8d66-44bb-bc74-d3102bfe30d1-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2019-04-12 14:41                   ` John MacFarlane
       [not found]                     ` <m2sgunb81m.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
  2019-04-12 20:38                   ` Kolen Cheung
  1 sibling, 1 reply; 10+ messages in thread
From: John MacFarlane @ 2019-04-12 14:41 UTC (permalink / raw)
  To: totyped-Re5JQEeQqe8AvxtiuMwx3w, pandoc-discuss

totyped-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org writes:

> Thanks a lot for your comments.
> Interesting, if I do the same thing with pypandoc, it does not work:
>
> s = "I have : <i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i>"
> text = pypandoc.convert_text(s,'latex', format = "markdown", extra_args = 
> ['--wrap=preserve'] )
>
> 'I have : 1,w\\textgreater{} + 2,w\\textgreater{}\r\n'

What pandoc version?

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/m2sgunb81m.fsf%40johnmacfarlane.net.
For more options, visit https://groups.google.com/d/optout.


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

* Re: Problem When Transcribing Greek HTML Letters to LaTex
       [not found]                     ` <m2sgunb81m.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
@ 2019-04-12 18:14                       ` totyped-Re5JQEeQqe8AvxtiuMwx3w
  0 siblings, 0 replies; 10+ messages in thread
From: totyped-Re5JQEeQqe8AvxtiuMwx3w @ 2019-04-12 18:14 UTC (permalink / raw)
  To: pandoc-discuss


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

pandoc 2.7.2
Compiled with pandoc-types 1.17.5.4, texmath 0.11.2.2, skylighting 0.7.7

On Friday, April 12, 2019 at 4:41:26 PM UTC+2, John MacFarlane wrote:
>
> tot...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <javascript:> writes: 
>
> > Thanks a lot for your comments. 
> > Interesting, if I do the same thing with pypandoc, it does not work: 
> > 
> > s = "I have : <i><λv<sub>1</sub>,w> + <v<sub>2</sub>,w></i>" 
> > text = pypandoc.convert_text(s,'latex', format = "markdown", extra_args 
> = 
> > ['--wrap=preserve'] ) 
> > 
> > 'I have : 1,w\\textgreater{} + 2,w\\textgreater{}\r\n' 
>
> What pandoc version? 
>

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/2588904a-dcf6-421c-9628-07ce72660f61%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* Problem When Transcribing Greek HTML Letters to LaTex
       [not found] ` <4160d0dd-940f-405e-9ecb-0f1eca421b14-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2019-04-12  0:04   ` John MacFarlane
@ 2019-04-12 20:31   ` Kolen Cheung
  1 sibling, 0 replies; 10+ messages in thread
From: Kolen Cheung @ 2019-04-12 20:31 UTC (permalink / raw)
  To: pandoc-discuss

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

How do you obtain that HTML to begins with? If you write it yourself then you should use LaTeX syntax to begin with, and then in HTML something like MathJax can render (most common syntaxes) them.

Also be careful that LaTeX (pdftex) doesn’t support Greek alphabets very well. If you want to type Unicode Greek alphabet then there’s a bunch of other things you need to know. The current best way is to stick with command like \alpha, etc.

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/19f4ea2f-2496-4622-b4f1-86c8409a36c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

* Re: Problem When Transcribing Greek HTML Letters to LaTex
       [not found]                 ` <7711d138-8d66-44bb-bc74-d3102bfe30d1-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2019-04-12 14:41                   ` John MacFarlane
@ 2019-04-12 20:38                   ` Kolen Cheung
  1 sibling, 0 replies; 10+ messages in thread
From: Kolen Cheung @ 2019-04-12 20:38 UTC (permalink / raw)
  To: pandoc-discuss

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

Why in your last post you convert from markdown rather than html?

Also, try to work with pandoc directly first. Although pypandoc is pretty minimal, but people here only support pandoc.

Also try to produce MWE every time. If you didn’t provide a recipe that people can reproduce your result exactly, others can’t help you much. (And another reason not to use pypandoc but pandoc itself to report your problem, because you can’t assume everyone here uses pypandoc and has a set up readily available.)

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/e5995a28-06f5-4522-88e6-47cba3bc114f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

end of thread, other threads:[~2019-04-12 20:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-11 23:08 Problem When Transcribing Greek HTML Letters to LaTex totyped-Re5JQEeQqe8AvxtiuMwx3w
     [not found] ` <4160d0dd-940f-405e-9ecb-0f1eca421b14-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2019-04-12  0:04   ` John MacFarlane
     [not found]     ` <yh480k8swgxf5n.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
2019-04-12  3:27       ` totyped-Re5JQEeQqe8AvxtiuMwx3w
     [not found]         ` <885bafeb-28cc-4f7f-ad1f-f7708ed8fb4d-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2019-04-12  4:54           ` John MacFarlane
     [not found]             ` <m2y34fvn5t.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
2019-04-12 13:56               ` totyped-Re5JQEeQqe8AvxtiuMwx3w
     [not found]                 ` <7711d138-8d66-44bb-bc74-d3102bfe30d1-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2019-04-12 14:41                   ` John MacFarlane
     [not found]                     ` <m2sgunb81m.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
2019-04-12 18:14                       ` totyped-Re5JQEeQqe8AvxtiuMwx3w
2019-04-12 20:38                   ` Kolen Cheung
2019-04-12 12:28           ` Joseph Reagle
2019-04-12 20:31   ` Kolen Cheung

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