A Blog, Apparently

I guess I have a blog now. This mostly serves a render test for my org to html code. Initially based of ckie's render test. The contents of this post might change, if I want to add more test cases.

Render Test #

toplevel

hello #

Some text here!

world #

..and some more text here.

this shouldn't be inside world #

A link to hello.

another one #

yeah this has some text maybe even a few lines?

> A qoute from "The Origin"

some text between qoutes

> An qoute-block without origin

now this has some spacing yay

markup #

To markup text in Org, simply surround with one or more marker characters. Bold, italic and underline are fairly intuitive, and the ability to use strikethrough is a plus. You can combine the basic markup in any order, however code and verbatim need to be the inner-most markers if they are present since their contents are interpreted _literally_.

  fn main() {
    // comment
    let s = "Hello world!";
    println!(s)
    /* The main function with a block comment
       spanning multiple lines */
  }

Here is a plain link https://lgcl.de/! Does it work?

Code Blocks #

  echo "Hello World!" | xxd
  echo "* magic *"
: 00000000: 4865 6c6c 6f20 576f 726c 6421 0a         Hello World!.
: * magic *
  def fun():
      return "Hello "
  return fun() + "World!"
: Hello World!

Example Block #

  This is an example

lists #

What follows is a simple list:

An include (src) #

  This is the third line.
  
  And this is the fifth line.

An include (example) #

  This is the first line.
  
  This is the third line.

An include (export) #

Sourced includes #

A single line:

  MIT License
source

Multiple lines

  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
source

The whole file:

  MIT License
  
  Copyright (c) 2024 Leon Vack
  
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
  
  The above copyright notice and this permission notice shall be included in all
  copies or substantial portions of the Software.
  
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  SOFTWARE.
source

A broken include #

Failed to import source '20221217-a-blog-apparently/missing-file': include '20221217-a-blog-apparently/missing-file' not found

Image #

Some More Content #

Here is some more content. I don't know why it's there, but it sure is now.