-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Markdown rendering should keep {} #10928
Comments
I would like to work on this issue |
Hi @koppor, I did my best for solving this issue, but I don't know how to solve it. I noticed that |
Related PR: #10942? Currently, I think, following lines in the HTMLChars should be removed } else if (!incommand && ((c == '{') || (c == '}'))) {
// Swallow the brace. Adapt tests. In Thinking more, the LaTeX command handling in HTMLChars should be removed. In the |
@LoayGhreeb Any progress here? 😅 |
I've unassigned myself and am currently working on another issue. I'll come back to this one soon if nobody else takes it. |
You can assign me on this one if you wish ! |
JabRef has internally a field marker that marks a field as
Markdown
.org.jabref.model.entry.field.FieldProperty#MARKDOWN
When that field is rendered in the preview,
{}
should be kept.Example content of a Comment:
This issue is more about code reading and understanding JabRef's archictecture. The "real" fix should be a few lines of code: Checking for the field property
MARKDOWN
and passing the field value with plain latex (and not latex free).The text was updated successfully, but these errors were encountered: