diff --git a/src/posts/line-break-md.md b/src/posts/line-break-md.md new file mode 100644 index 0000000..08ef51b --- /dev/null +++ b/src/posts/line-break-md.md @@ -0,0 +1,47 @@ +--- +layout: ../layouts/BlogPost.astro +title: Making a single line break in markdown +slug: line-break-md +description: Here's how you can add single line breaks in your markdown documents! +tags: + - technical +added: 2023-12-10T06:49:17.431Z +--- + +Sometimes when you write markdown, you'll write some paragraph... + +and then you hit "Enter" twice to make another paragraph. + +``` +Like this... + +...and then this. +``` + +This will render: + +```html +
Like this...
+...and then this.
+``` + +But, sometimes you want to make a single line break, kind of like in HTML where you have: + +```html +
+Like this...
+...and then this.
+