MarkdownView
MarkdownView copied to clipboard
How can I change text size
Hi, Please how can I change the text size in the viewer. I cant seem to find an option for that. Will it involve a code change?
I would like to know to if (and how) it is possible to change font/fontsize...
+1
+1
+1
You can hack it larger with a style block in the markdown input.
<style> body{font-size:24px;} </style>
# Effects
The default text font-size is now 24px.
How about the text inside box ``` body {font-size} doesn't work.
I figured it out. if you want to change the font size inside the box <style> pre{font-size:30px;} </style>
add it into your markdown string.
How about the text start with > , # and ## does not work.
How about the text start with > , # and ## does not work.
Have you tried h1{font-size:px;} for #, h2 for ## ?
Yes , it is working and let me know about the default text font-size of h1 and h2 and please help me about >
Show me your code
I figured out that we can use <style> blockquote{font-size:15px;} </style>
for >