Within markdown, is there a way of making one word within a sentence bigger than all of the rest?
Know you can change the size of a heading using #'s but not sure if there is a way to change the size of the main body as a whole, let alone just one word within the main body?
Thanks
You can't do it strictly within markdown, but the markdown syntax does permit HTML markup, and many markdown processors honor that, at least partially. So the following would theoretically work, and might actually work depending on the processor.
This is a paragraph with one <span style="font-size:larger;">word</span>
larger than the others.