Hello, world!
Table of Contents
Simple formatting
Keep lists over blocks
The End:
In the beginning there was
Are we there yet?
Simple formattingBOLD text
Codified text
Underlined text
Italic text
verbatim text
Keep lists over blocks
- Here we are starting a list
- Whoops there is another item
- Aand anotherone. Now, a source block:Now, the list continues(!)…
echo dud! # woho
- and we have another item
let us try this again$$ e ^ {i \theta} = \cos \theta + i \sin \theta $$
And the toughest:
\begin{eqnarray*} && (\lambda xyz.xyz)(\lambda x.xx)(\lambda x.x)x \ & \to_\beta & (\lambda yz.xyz)[x := \lambda x.xx](\lambda x.x)x \ & \equiv & (\lambda yz.(\lambda x.xx)yz)(\lambda x.x)x \ & \to_\beta & (\lambda yz.(xx)[ x := y]z)(\lambda x.x)x \ & \equiv & (\lambda yz.yyz)(\lambda x.x)x \ & \to_\beta & (\lambda z.yy)[ y := \lambda x.x ]x \ & \equiv & (\lambda z.(\lambda x.x)(\lambda x.x)z)x \ & \to_\beta & (\lambda z.x[x := \lambda x.x]z)x \ & \equiv & (\lambda z.(\lambda x.x)z)x \ & \to_\beta & (\lambda z.x[x := z])x \ & \equiv & (\lambda z.z)x \ & \to_\beta & z[z := x] \ & \equiv & x \end{eqnarray*}
look how great it looks in emacs :(

- And also does this funky chart render?
{:data {:values [{:power 1 :speed 2 :engine :v8}
{:power 3 :speed 4 :engine :v6}
{:power 8 :speed 7 :engine :v8}
{:power 4 :speed 3.5 :engine :v8}
{:power 5 :speed 4 :engine :v8}
{:power 1.2 :speed 3 :engine :v6}
{:power 3.2 :speed 3.8 :engine :v6}
{:power 7.5 :speed 7.2 :engine :v6}]}
:mark {:type :point
:tooltip true}
:width 500
:height 400
:encoding {:x {:field :power}
:y {:field :speed}
:color {:field :engine}
:size {:value 80}}}

:whatisthis:blog:ATTACH:
A wise man once said, .. eh well, nothing,
i mean, the wise man said nothing, but..
well it was the right thing to do at this
point and yeah they called him the wise man
for a reason, eh? umm anyways the point is
..
</div>
<div class="keywords" id="org277f47e"> <p> fun, samplekw, lefkr </p>
</div>
Code highlight Pythonlook, there is python code:
import os
os.system("Hack the planet!")
echo "Dud!";
MYVAR="testestest"
function hello {
if cat somefile | grep -o "nono"; then
echo "huhu"
exit 1
else
echo nono
exit 255
fi
}
\begin{eqnarray*}
&& (\lambda xyz.xyz)(\lambda x.xx)(\lambda x.x)x \\
& \to_\beta & (\lambda yz.xyz)[x := \lambda x.xx](\lambda x.x)x \\
& \equiv & (\lambda yz.(\lambda x.xx)yz)(\lambda x.x)x \\
& \to_\beta & (\lambda yz.(xx)[ x := y]z)(\lambda x.x)x \\
& \equiv & (\lambda yz.yyz)(\lambda x.x)x \\
& \to_\beta & (\lambda z.yy)[ y := \lambda x.x ]x \\
& \equiv & (\lambda z.(\lambda x.x)(\lambda x.x)z)x \\
& \to_\beta & (\lambda z.x[x := \lambda x.x]z)x \\
& \equiv & (\lambda z.(\lambda x.x)z)x \\
& \to_\beta & (\lambda z.x[x := z])x \\
& \equiv & (\lambda z.z)x \\
& \to_\beta & z[z := x] \\
& \equiv & x
\end{eqnarray*}
- Latex Code in a list:
\begin{eqnarray*} && (\lambda xyz.xyz)(\lambda x.xx)(\lambda x.x)x \\ & \to_\beta & (\lambda yz.xyz)[x := \lambda x.xx](\lambda x.x)x \\ & \equiv & (\lambda yz.(\lambda x.xx)yz)(\lambda x.x)x \\ & \to_\beta & (\lambda yz.(xx)[ x := y]z)(\lambda x.x)x \\ & \equiv & (\lambda yz.yyz)(\lambda x.x)x \\ & \to_\beta & (\lambda z.yy)[ y := \lambda x.x ]x \\ & \equiv & (\lambda z.(\lambda x.x)(\lambda x.x)z)x \\ & \to_\beta & (\lambda z.x[x := \lambda x.x]z)x \\ & \equiv & (\lambda z.(\lambda x.x)z)x \\ & \to_\beta & (\lambda z.x[x := z])x \\ & \equiv & (\lambda z.z)x \\ & \to_\beta & z[z := x] \\ & \equiv & x \end{eqnarray*}
- Latex Rendered inline in a list
Simple \$ λ \$ works?
ElispWell i obviously need code highlight:
(defun fkr//rg-localedit (action change)
(unless (boundp 'fkr//rg-reset)
(setq fkr//rg-reset consult-ripgrep-args))
(unless (boundp 'fkr//rg-find-all)
(setq fkr//rg-find-all ""))
(unless (boundp 'fkr//rg-lines-before)
(setq fkr//rg-lines-before 0))
(unless (boundp 'fkr//rg-lines-after)
(setq fkr//rg-lines-after 0))
(cond ((eql action 'after)
(progn
(setq fkr//rg-lines-after (funcall change fkr//rg-lines-after 1))))
((eql action 'before)
(progn
(setq fkr//rg-lines-before (funcall change fkr//rg-lines-before 1))))
((eql action 'find-all)
(progn
(setq fkr//rg-find-all (if change " --no-ignore --hidden" ""))))
((eql action 'reset
(setq consult-ripgrep-args fkr//rg-reset))))
(unless (eql action 'reset)
(setq consult-ripgrep-args (concat fkr//rg-reset " -A" (int-to-string fkr//rg-lines-after) " -B" (int-to-string fkr//rg-lines-before) fkr//rg-find-all))))
{:data {:values [{:power 1 :speed 2 :engine :v8}
{:power 3 :speed 4 :engine :v6}
{:power 8 :speed 7 :engine :v8}
{:power 4 :speed 3.5 :engine :v8}
{:power 5 :speed 4 :engine :v8}
{:power 1.2 :speed 3 :engine :v6}
{:power 3.2 :speed 3.8 :engine :v6}
{:power 7.5 :speed 7.2 :engine :v6}]}
:mark {:type :point
:tooltip true}
:width 500
:height 400
:encoding {:x {:field :power}
:y {:field :speed}
:color {:field :engine}
:size {:value 80}}}
it is not much, but it is mine.