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
and
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 elementexample -
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
exampleinside
a q element -
The
s elementexample -
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
- 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
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