* Where does CDATA come from?
@ 2021-11-22 4:57 Diego Rodriguez
2022-10-26 7:34 ` Ihor Radchenko
0 siblings, 1 reply; 2+ messages in thread
From: Diego Rodriguez @ 2021-11-22 4:57 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 2358 bytes --]
Hello,
I am customizing my org-mode installation but there is something that I
don't understand.
When I execute the following statement:
```
(setq org-html-mathjax-template
"
<script type=\"text/x-mathjax-config\">
MathJax.Hub.Config({
displayAlign: \"%ALIGN\",
displayIndent: \"%INDENT\",
\"HTML-CSS\": { scale: %SCALE,
linebreaks: { automatic: \"%LINEBREAKS\" },
webFont: \"%FONT\"
},
SVG: {scale: %SCALE,
linebreaks: { automatic: \"%LINEBREAKS\" },
font: \"%FONT\"},
NativeMML: {scale: %SCALE},
TeX: { equationNumbers: {autoNumber: \"%AUTONUMBER\"},
MultLineWidth: \"%MULTLINEWIDTH\",
TagSide: \"%TAGSIDE\",
TagIndent: \"%TAGINDENT\"
}
});
</script>
<script src=\"%PATH\"></script>
")
```
A `CDATA` tag gets appended in my HTML export as shown below:
```html
<script type="text/x-mathjax-config">
<![CDATA[
mathjax.hub.config({
displayalign: "center",
displayindent: "0em",
"html-css": { scale: 100,
linebreaks: { automatic: "false" },
webfont: "TeX"
},
svg: {scale: 100,
linebreaks: { automatic: "false" },
font: "TeX"},
nativemml: {scale: 100},
tex: { equationnumbers: {autonumber: "AMS"},
multlinewidth: "85%",
tagside: "right",
tagindent: ".8em"
}
});
]]>
</script>
<script src=
"
https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS_HTML
"
type="text/javascript">
</script>
```
As you can see above, when I set the variable I have no CDATA tag on it.
Where does this tag come from? The problem is that the CDATA tag messes up
with the MathJax configuration parser, as it expects a JavaScript script
inside. But, instead, it finds a CDATA tag that, while it might be valid
according to W3, the MathJax parser throws an `eval` error in the console
since it tries to parse the body of that HTML node.
Where does this CDATA tag gets added automatically and how can I modify
this behavior?
Diego Rodriguez
M.S. Candidate in Connective Media
Jacobs Technion-Cornell Institute at Cornell Tech
[-- Attachment #2: Type: text/html, Size: 3975 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Where does CDATA come from?
2021-11-22 4:57 Where does CDATA come from? Diego Rodriguez
@ 2022-10-26 7:34 ` Ihor Radchenko
0 siblings, 0 replies; 2+ messages in thread
From: Ihor Radchenko @ 2022-10-26 7:34 UTC (permalink / raw)
To: Diego Rodriguez; +Cc: emacs-orgmode
Diego Rodriguez <dvr24@cornell.edu> writes:
> Hello,
>
> I am customizing my org-mode installation but there is something that I
> don't understand.
>
> When I execute the following statement:
>
> ```
> (setq org-html-mathjax-template
>
> "
> <script type=\"text/x-mathjax-config\">
> ...
> ")
> ```
>
> A `CDATA` tag gets appended in my HTML export as shown below:
>
> ```html
> <script type="text/x-mathjax-config">
> <![CDATA[
> mathjax.hub.config({
Sorry for the late reply.
I am unable to reproduce this bug on the latest Org main.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-10-26 7:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-22 4:57 Where does CDATA come from? Diego Rodriguez
2022-10-26 7:34 ` Ihor Radchenko
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).