]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/vim-markdown/test/indent.md

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add '.vim/bundle/vim-flake8/' from commit 'ddceec6c457fd59bc2a9321cbf817e42aa4bfd86'
[etc/vim.git] / .vim / bundle / vim-markdown / test / indent.md
1 1. Confirm indent with new line insert after list items
2
3 '\' is not list item.
4 \ foo
5
6 If only space and three '*' or '-' character are in the line,
7 this line means horizontal item.
8 If current line is below horizontal item, it need not to indent.
9 Following example is horizontal item.
10
11 ---
12 ***
13 - - -
14 * * *
15
16 And list item must be specified space after [*-+].
17 Following example is list item.
18
19 * foo
20 - bar
21 + baz
22
23 But following example is not list item.
24 *foo
25 -bar
26 +baz