New Features

Wow! That Was Quick

Wow. Plume already has new features since my last post. You can now tag your articles. I wonder how these tags show up on Pleroma/Mastodon. Are they just listed as hashtags at the bottom of the post?

I think mentions are supported now, too. Let's see how that works. This is my masto account, @Zack@toot.cafe, and this is my pleroma account, @0x1C3B00DA@edolas.world.

Markdown Testing

Also, let's play around with the markdown formatting

Blockquotes

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Unordered Lists

  • item
  • another item
  • some other item

Ordered Lists

  1. one
  2. two
  3. three

Code

// this is a code block
fn main() {
    println!("Hello, World");
}

Code blocks are rendered by indenting the lines and are different from inline code like this println!("Hello, World");. Inline code is wrapped in backticks (`)