-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nice references to latex items #7310
Comments
We wouldn't need to make an option for this; it should ideally just be done by default. It shouldn't be too hard to implement. |
Note also that in your example the list style information ( |
@jgm yeah, double bug! :) |
Hello @jgm! I'm using Pandoc to convert Latex to html and I'm having the same issue. The following latex: \begin{enumerate}
\item[(E1)] First
\item[(E2)] Second
\end{enumerate} Outputs the following html: <ol>
<li><p>First</p></li>
<li><p>Second</p></li>
</ol> Is this still unresolved? I could try and fix it if you think this is a good first issue. |
Definitely not. The Pandoc AST has no way to represent a list with arbitrary markers. |
I see. Is there any workaround I could try? Thanks |
@wilitp Your question should better be asked in Discussions. It is not really relevant to this issue, which has to do with references to list items, not list items with custom enumerators. |
Let me share a small example of latex code:
which is compiled to very nice pdf:
Unfortunately when I compiled it to
.docx
I have this wired things:And markdown version looks same to
.docx
:Is it possible to add a magic option to achive output at docx similar with nice pdf?
I'm using:
The text was updated successfully, but these errors were encountered: