diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-11-09 13:13:54 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-11-09 13:13:54 +0300 |
commit | 2bc2fb358dfeaedd2f0cc83e7a25204f5f65af31 (patch) | |
tree | 79bf3ae6c76de95180a4beed36a02aeebcd72e63 /_notes/markdown.md | |
parent | recurring: update (diff) | |
download | jekyll-theme-2bc2fb358dfeaedd2f0cc83e7a25204f5f65af31.tar.gz jekyll-theme-2bc2fb358dfeaedd2f0cc83e7a25204f5f65af31.zip |
markdown: link to document's source
Diffstat (limited to '_notes/markdown.md')
-rw-r--r-- | _notes/markdown.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/_notes/markdown.md b/_notes/markdown.md index a64ca6d..dee25f4 100644 --- a/_notes/markdown.md +++ b/_notes/markdown.md @@ -17,7 +17,7 @@ Additional sentences start there also. * Prefer reference-style links over inline links. Omit the second pair of brackets `[]` entirely where appropriate. For example, [Google] is preferred over both [Google](https://ya.ru) and -[I'm feeeling lucky][google] (see this document's source). +[I'm feeeling lucky][google] (see [this document's source]). * First- and second-level headers are underlined with strings of `=` and `-`. The number of `=`/`-` signs must be equal to the number of characters in the header. @@ -41,3 +41,4 @@ a path, a link or a header. {: .table .table-bordered } [Google]: https://www.google.com/ +[this document's source]: https://raw.githubusercontent.com/{{ site.github.repository_nwo }}/{{ site.github.source.branch }}/{{ page.path }} |