You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example from index.md of a freshly generated site:
### LaTeX and Maths
Essentially three things are imitated from LaTeX
1. you can introduce definitions using `\newcommand`
1. you can use hyper-references with `\eqref`, `\cite`, ...
1. you can show nice maths (via KaTeX)
should be rendered like:
LaTeX and Maths
Essentially three things are imitated from LaTeX
you can introduce definitions using \newcommand
you can use hyper-references with \eqref, \cite, ...
you can show nice maths (via KaTeX)
but looks like the following (note that this is edited by hand):
LaTeX and Maths
Essentially three things are imitated from LaTeX
you can introduce definitions using newcommand
you can use hyper-references with eqref, cite, ...
you can show nice maths (via KaTeX)
This happens on #master, but not on v0.2.0.
The text was updated successfully, but these errors were encountered:
cserteGT3
changed the title
[BUG] Inline code blocks are endered incorrectly
[BUG] Inline code blocks are rendered incorrectly
Aug 21, 2019
Ok this is now fixed, the issue is described in #205 and solved in #209 (and tested explicitly in #212) ; on master the following:
Essentially three things are imitated from LaTeX
1. you can introduce definitions using `\newcommand`1. you can use hyper-references with `\eqref`, `\cite`, ...
1. you can show nice maths (via KaTeX)
becomes
<p>Essentially three things are imitated from LaTeX</p><ol><li><p>you can introduce definitions using <code>\newcommand</code></p></li><li><p>you can use hyper-references with <code>\eqref</code>, <code>\cite</code>, ...</p></li><li><p>you can show nice maths (via KaTeX)</p></li></ol>
So there's no spurious insertions of <br/> that caused the line skipping you reported.
Example from
index.md
of a freshly generated site:should be rendered like:
LaTeX and Maths
Essentially three things are imitated from LaTeX
\newcommand
\eqref
,\cite
, ...but looks like the following (note that this is edited by hand):
LaTeX and Maths
Essentially three things are imitated from LaTeX
newcommand
eqref
,cite
, ...This happens on
#master
, but not onv0.2.0
.The text was updated successfully, but these errors were encountered: