Hey Everyone,
I am working on a project where I need one specific folder to have all of its notes formatted in a certain way. I need the first line of each paragraph indented and for there to be a single line space between each paragraph.
At first I tried using snippets to affect the folder directly but that didn’t work. Then I tried using templater to apply a template to each note in the folder individually. I am wondering if I am using incorrect code or I am just not even using the correct plugin. Any suggestions would be greatly appreciated
Okay, the snippet below creates space between paragraphs and works in editing and reading views.
It also creates the appearance of a tab at the start of each paragraph in editing views. But for the indentation to work in the reading view, your paragraphs need to have a blank line between them. That is, two line breaks.
Basically paragraph formatting is not allowed in markdown. So you are using wrong tools (markdown). You might be interested in LaTeX. Using CSS with markdown is possible but this combination doesn’t work well when the source is converted to a published format (pdf etc). One might set other formatting requirements besides paragraph styling. LaTeX can solve such problems.