I am a student of DAM , and I have some notes that I am writing with Bootsnote in Markdown , but I am not able to highlight text, just like in a paper document with a marker.
I have searched if it would be possible to do it with a tag html
and css
, for example like this:
Lorem Ipsum is simply the dummy text of printers and text files.
<span style="background:#FFFF00">Lorem Ipsum ha sido el texto.</span>
But I can't get the document to display with highlighting.
Unfortunately
markdown
it doesn't offer any code to perform the highlighting you expect. The possibility of embedding together with themarkdown
codehtml
exists in many tools. In the case ofboostnote
this functionality, it is not enabled by default. To configure it, go to the preferences part:And you have to allow
html
"dangerous" labels. Then you can use for example:or even
Example:
I recommend you try an online markdown viewer to write the content:
Here is the link:
https://markdownlivepreview.com/
For the syntax this in the link:
https://www.markdownguide.org/basic-syntax/
As for highlighting what you can do in markdown is:
ITALIC; grouping the word or sentence in * Ex: * I am italic *
BOLD: grouping the word or sentence in ** Ex: ** this is a bold markdown **
BOLD + ITALICO: is grouping the word or sentence between * Ex: ** this goes in bold italic *