Version 2.0.1.stu

* Follow (i.e. open target of) markdown reference-style links.
  * Bug fixes.
This commit is contained in:
Maxim Kim
2012-07-07 00:00:00 +00:00
committed by Able Scraper
parent d5a6d097da
commit d19cc85a71
9 changed files with 422 additions and 99 deletions

View File

@ -9,7 +9,7 @@
|___| |___| |_| |_||__| |__||___| |___| |_||___| ~
Version: 2.0 'stu'
Version: 2.0.1 'stu'
==============================================================================
CONTENTS *vimwiki-contents*
@ -610,10 +610,10 @@ Markdown Links~
These links are only available for Markdown syntax. See
http://daringfireball.net/projects/markdown/syntax#link.
Inline links: >
Inline link: >
[Looks like this](URL)
Image links: >
Image link: >
![Looks like this](URL)
The URL can be anything recognized by vimwiki as a raw URL.
@ -623,10 +623,26 @@ Reference-style links: >
a) [Link Name][Id]
b) [Id][], using the "implicit link name" shortcut
Vimwiki treats reference style links just like default "Wikilinks". In the
current implementation: the Id field must be a valid wiki page name,
reference style links must always include *two* consecutive pairs of
[-brackets, and entries can not use "[" or "]".
Reference style links must always include *two* consecutive pairs of
[-brackets, and field entries can not use "[" or "]".
NOTE: (in Vimwiki's current implementation) Reference-style links are a hybrid
of Vimwiki's default "Wikilink" and the tradition reference-style link.
If the Id is defined elsewhere in the source, as per the Markdown standard: >
[Id]: URL
then the URL is opened with the system default handler. Otherwise, Vimwiki
treats the reference-sytle link as a Wikilink, interpreting the Id field as a
wiki page name.
Highlighting of existing links when |vimwiki-option-maxhi| is activated
identifies links whose Id field is not defined, either as a reference-link or
as a wiki page.
To scan the page for new or changed definitions for reference-links, simply
re-open the page ":e<CR>".
------------------------------------------------------------------------------
@ -1193,21 +1209,21 @@ Use the :VimwikiTable command to create a default table with 5 columns and 2
rows: >
| | | | | |
|---+---+---+---+---|
|---|---|---|---|---|
| | | | | |
<
Tables are auto-formattable. Let's add some text into first cell: >
| First Name | | | | |
|---+---+---+---+---|
|---|---|---|---|---|
| | | | | |
<
Whenever you press <TAB>, <CR> or leave Insert mode, the table is formatted: >
| First Name | | | | |
|------------+---+---+---+---|
|------------|---|---|---|---|
| | | | | |
<
@ -1215,7 +1231,7 @@ You can easily create nice-looking text tables, just press <TAB> and enter new
values: >
| First Name | Last Name | Age | City | e-mail |
|------------+------------+-----+----------+----------------------|
|------------|------------|-----|----------|----------------------|
| Vladislav | Pokrishkin | 31 | Moscow | vlad_pok@smail.com |
| James | Esfandiary | 27 | Istanbul | esfandiary@tmail.com |
<
@ -2170,10 +2186,16 @@ Vim plugins: http://www.vim.org/scripts/script.php?script_id=2226
==============================================================================
14. Changelog *vimwiki-changelog*
2.0.1 'stu'~
* Follow (i.e. open target of) markdown reference-style links.
* Bug fixes.
2.0 'stu'~
This release is partly incompatible with previous.
*
Summary ~
* Quick page-link creation.