Open stla opened 10 years ago
Cool, it works by including this code in the first chunk:
extensions <- markdown::markdownExtensions()
options(markdown.extensions=extensions[extensions != "superscript"])
Same problems as https://github.com/ramnathv/slidify/issues/97. About subscripts, this works:
$x_i$ and $x_j$
but this doesn't work:
$x_i$ and $x_{j}$
The latter generates this html tag:
<p>$x<em>i$ and $x</em>{j}$</p>
Let me take a look. RStudio has switched from markdown
to rmarkdown
and I am planning to go down that route too, since rmarkdown
offers more robust markdown parsing. But, in the meantime I am sure there is a fix to this within markdown
.
Indeed, the problem has occured when I installed the latest RStudio.
I got the same problem for the latest RStudio.
Is there a current solution for this issue?
I don't think so. I do not remember how I solved it for my case but it was not a clean solution.
Hello,
This file:
generates this rendering:
I have tried to remove the
superscript
option ofmarkdownToHTML
by including this code in the first chunk:but this has not solved anything.