Your sites Log in Sign up Menu

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:

 Post.org 
Date: February 28th, 2024
Tags: test, org-mode, blot

* Heading Level 1

Your post content goes here.
  

You can also use YAML style metadata:

 Post.org 
#+BEGIN_SRC yaml
Date: February 28th, 2024
Tags: test, org-mode, blot
#+END_SRC

* Your Post Title

  

Use the following syntax to create links:

 Post.org 
[[https://blot.im/][Blot]]
  

Images

Use the following syntax to add images:

 Post.org 
[[file:_image.jpg]]
  

Code blocks

Use the following syntax to add code blocks:

 Post.org 
#+BEGIN_SRC python
print("Hello, World!")
#+END_SRC