Testing the Waters

2019-06-19 | Modified: 2020-08-26

Exploration in markdown

This article is a test post. I'm currently trying to configure writing blog posts in markdown to be rendered to html.

The blog will be an exploration of the many novel or re-occurring thoughts I have.

At first, many of the posts will be reflection on interesting insights from other blogs or books. There will be heavy influences from the various blogs I frequently browse. Some notable mentions:

I plan on creating a section on book notes (one step at a time!).

The Fibonacci sequence is defined

$$F_0 = 1, F_1 = 1$$

and

$$F_n = F_{n-1} + F_{n-1}$$

for \(n > 1\).

fib :: Int -> Int
fib 0 = 0
fib 1 = 1
fib n = fib (n-1) + fib (n-2)

Text Elements

  • The a element and external a element examples

  • The abbr element and an abbr element with title examples

  • The ACRONYM element example

  • The b element example

  • The cite element example

  • The code element example

  • The data element example

  • The del element example

  • The dfn element and dfn element with title examples

  • The em element example

  • The i element example

  • The ins element example

  • The kbd element example

  • The mark element example

  • The q element example

  • The q element inside a q element example

  • The s element example

  • The samp element example

  • The small element example

  • The span element example

  • The strong element example

  • The sub element example

  • The sup element example

  • The example

  • The u element example

  • The var element example


List Types

Ordered List

  1. List Item 1
  2. List Item 2
    1. List Item 2.1
    2. List Item 2.2
      1. List Item 2.2.1
      2. List Item 2.2 2
    3. List Item 2.3
  3. List Item 3

Unordered List

  • List Item 1
  • List Item 2
    • List Item 2.1
    • List Item 2.2
      • List Item 2.2.1
      • List Item 2.2 2
    • List Item 2.3
  • List Item 3

Tables

Table Header 1 Table Header 2 Table Header 3
Division 1 Division 2 Division 3
Division 1 Division 2 Division 3
Division 1 Division 2 Division 3

Finally a quote about ends:

When you reach the end of your rope, tie a knot in it and hang on. — Franklin D. Roosevelt