Org Mode
Use the full range of Org Mode features to format your posts.
Metadata
You can add metadata to your posts using the following syntax:
Date: February 28th, 2024 Tags: test, org-mode, blot * Heading Level 1 Your post content goes here.
You can also use YAML style metadata:
#+BEGIN_SRC yaml Date: February 28th, 2024 Tags: test, org-mode, blot #+END_SRC * Your Post Title
Links
Use the following syntax to create links:
[[https://blot.im/][Blot]]
Images
Use the following syntax to add images:
[[file:_image.jpg]]
Code blocks
Use the following syntax to add code blocks:
#+BEGIN_SRC python print("Hello, World!") #+END_SRC