DavidLeoni / jupman

A template for online books made with Jupyter notebooks
https://jupman.softpython.org
Other
0 stars 1 forks source link

Markdown tables with links show wrong in HTML #137

Open DavidLeoni opened 1 year ago

DavidLeoni commented 1 year ago

This:

Operatore Sintassi Risultato Significato
lunghezza len(str) int Ritorna la lunghezza della stringa
indice str[int] str Legge il carattere all'indice specificato
concatenazione str1 + str2 str Concatena due stringhe
inclusione str1 in str2 bool Controlla se la stringa è presente in un'altra stringa
slice str[int:int] str Estrae una sotto-stringa
uguaglianza ==,!= bool Controlla se due stringhe sono uguali o differenti
replicazione str * int str Replica la stringa

Shows as

image

Behaviour is pretty random, if I remove everything from inclusione line it shows correctly

I tried a workaround with <a> tags, doesn't show artifacts but text is not clickable :-(