From 77d3f40c19454692e817f73b5f07d8425b21e1f7 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Fri, 21 Apr 2023 17:37:48 -0400 Subject: [PATCH] Add a simple example of each lesser block type. --- org_mode_samples/lesser_block/simple.org | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 org_mode_samples/lesser_block/simple.org diff --git a/org_mode_samples/lesser_block/simple.org b/org_mode_samples/lesser_block/simple.org new file mode 100644 index 0000000..d9ef763 --- /dev/null +++ b/org_mode_samples/lesser_block/simple.org @@ -0,0 +1,19 @@ +#+begin_comment +This is a comment. +#+end_comment + +#+begin_example +This is an example. +#+end_example + +#+begin_export latex +This would be LaTeX code. +#+end_export + +#+begin_src sh + echo "this is a source block." +#+end_src + +#+begin_verse +This is a verse block. +#+end_verse