retext icon indicating copy to clipboard operation
retext copied to clipboard

Feature request: Possible to adjust the line height?

Open tckoppang opened this issue 5 years ago • 2 comments

Perhaps this is already possible by using style sheets, but I can't seem to figure it out. Is it possible to adjust the line height? Something closer to 1.2 or 1.5 would be great.

tckoppang avatar Feb 16 '20 22:02 tckoppang

You mean preview, not editor, right?

Try putting this on top of your Markdown files:

<style>
p {
    line-height: 1.5;
}
</style>

You can also create a CSS file with these contents (without <style> and </style> tags, of course) and specify a path to it in the styleSheet setting in the configuration file.

mitya57 avatar Feb 17 '20 09:02 mitya57

Oh, I actually meant in the editor.

tckoppang avatar Feb 17 '20 12:02 tckoppang