-
Notifications
You must be signed in to change notification settings - Fork 9
/
journal.txt
90 lines (70 loc) · 2.65 KB
/
journal.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* vim: set filetype=journal: */
vim-journal
===========
*vim-journal*[1] is _a syntax plugin for plain-text notes_ that are written in
a custom lightweight markup language. The syntax resembles `Markdown`, but
it's more focused on bullet lists and it's specifically designed to look
pretty on Vim.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Bullet lists [2]
----------------
Example:
- In typography, a bullet (•) is a typographical symbol or glyph used to
introduce items in a list.
= It is likely that the name originated from the resemblance of the
traditional circular bullet symbol (•) to a projectile bullet, which were
spherical until the second half of the 19th century
* The bullet symbol may take any of a variety of shapes, such as
1. circular,
2. square,
3. diamond,
4. arrow, etc.
* And typical word processor software offer a wide selection of shapes and
colours.
* When writing by hand, bullets may be drawn in any style
o Historically, the index symbol was popular for similar uses.
x Lists made with bullets are called bulleted lists.
> The HTML element name for a bulleted list is "unordered list"
~ Because the list items are not arranged in numerical order.
: (as they would be in a numbered list)
! Bullets are most often used in technical writing, reference
works, notes and presentations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To-do list [3]
--------------
As its name implies, the To-do list on an article's talk page shows the list
of improvements suggested for the article.
[v] Task 1
[ ] Task 1-1
[v] Task 1-1-1
[x] Task 1-1-2
[*] Task 1-1-2-1
[=] Task 1-1-2-1-1
[=] Task 1-1-2-1-2
[-] Task 1-1-2-2
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Software logs
-------------
2015/04/01 12:00:00 DEBUG Info message
2015/04/01 12:00:00 INFO Info message
2015/04/01 12:00:00 WARN Warning message
2015/04/01 12:00:00 ERROR Error message (FIXME)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Code
----
--clojure
(defn is-directory? [path]
(.isDirectory (io/file (path-for path))))
--
Blocks can be indented.
```ruby
class Foo
def foobar
puts :baz
end
end
```
******************************************************************************
[1]: https://github.com/junegunn/vim-journal
[2]: http://en.wikipedia.org/wiki/Bullet_%28typography%29
[3]: http://en.wikipedia.org/wiki/Wikipedia:To-do_list