# Tables
+-----------------+
| This is a table |
+-----------------+
|------------|
|Also a table|
|------------|
# Outline samples
This page contains a variety of outline types to use for manual testing
## Outline indented with spaces
* Todo level 1
* Todo level 2a
with some text on the next line
* Todo level 2b
* Todo level 3a
* Todo level 4a
* Todo level 3b
* Todo level 4b
* Todo level 5
* Todo level 6
- Todo level 1
- Todo level 2a
with some text on the next line
- Todo level 2b
- Todo level 3a
- Todo level 4b
- Todo level 5
- Todo level 6
+ Todo level 1
+ Todo level 2a
with some text on the next line
+ Todo level 2b
+ Todo level 3a
+ Todo level 4b
+ Todo level 5
+ Todo level 6
## Outline indented with stacks
* Todo level 1
** Todo level 2a
*** Todo level 3a
**** Todo level 4a
*** Todo level 3b
**** Todo level 4b
***** Todo level 5
****** Todo level 6
## Outline with numbers
1. Level 1
2. Also Level 1
## Outlines with embedded tables
* Some
* Embedding
+-------+
| table |
# Lots of types
* Star
1. Number
a. Letter
- Dash
2. Number
A. Number
## Links
* [Organized Github Account](https://github.com/MattFlower/organized)
* abc
## TODO items
* [TODO] One todo
* [DONE] Already completed todo
## Code Highlighting
* Highlighting is available in several languages
* C
* Jira-style
```c
#include
Hello World
: ``` * Python * Jira-style ```python print [i*2 for i in range(1,10)] ``` ```result : [2, 4, 6, 8, 10, 12, 14, 16, 18] ``` * Org-mode style #+BEGIN_SRC python print [i*2 for i in range(1,10)] #+END_SRC * Shell (Generic) * Jira-style ```shell for dir in `ls -la *`; do echo "Some dir: $dir" done ``` * Org-mode Style #+BEGIN_SRC shell for dir in `ls -la *`; do echo "Some dir: $dir" done #+END_SRC * SQL * Jira-style ```sql SELECT * FROM DUAL ``` * Org-mode style #+BEGIN_SRC sql SELECT * FROM DUAL #+END_SRC