Open
Description
Bug description
Markdown footnotes and LaTeX math code not working properly
Additional context
I'm creating a GitBook through its connection to one of my public GitHub repos. One of my markdown files has a footnote and a little LaTeX math symbol that aren't correctly rendered in my GitBook.
I've checked the GitBook documentation (Footnote docs and LaTeX docs) but I'm not able to find a solution.
How to reproduce
Here is a piece of my markdown content:
<!-- More text -->
El *component* base i principal de tota aplicació Angular és el *component* `App`. En aplicacions petites serà l'única pàgina i en aplicacions grans serà el *component* que actuarà de contenidor per gestionar l'enrutament de les múltiples pàgines, tal com es veurà més endavant [^1]. Sigui com sigui, tots els components acabaran penjant d'una manera o d'una altra del *component* `App` o d'algun dels seus fills. És a dir, els components s'aniran niant els uns dins dels altres.
<!-- More text -->
<!-- Footnote n.1 -->
[^1]: aquest enrutament fa que l'usuari tingui la sensació d'estar navegant a través de múltiples pàgines d'una mateixa aplicació web, però cal recordar que una aplicació Angular és una *SPA* i, per tant, en realitat només existeix una única pàgina `HTML`.
<!-- More text -->
Fitxers Typescript:
- `app.ts` $\rightarrow$ `App`
- `header.ts` $\rightarrow$ `Header`
<!-- $\ritharrow$ LaTeX math symbol -->
As shown in this screenshoot, the footnote does not render anywhere:
And this other screenshoot shows that the "rightarrow" symbol is not rendered properly:
Thank you for your help in advanced!