soywiki 0.9.8.2.pre.2 → 0.9.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.markdown +14 -0
- data/lib/soywiki.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d23618b256b4671b2d1927fb643b43286d1053d4
|
|
4
|
+
data.tar.gz: 74800d72cf547716ed9bacc3d7fe0f51689dc8e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 723e319fee814129cef4652a485039f93e889fe3e0d524ab6849b72670c11523b7ccd2c0ae12a1c2b6c06cd3bc9db9e8858c5e706ee6d1a63648ba49f37a5cf4
|
|
7
|
+
data.tar.gz: f91e60b8d412a888e4a4bd0b185f465337dd2e31a7407e1a398b446616211c99d8372664669b5efb587d68a37a4afe76fe4aff301932163633d1ed813475e3a5
|
data/README.markdown
CHANGED
|
@@ -364,6 +364,20 @@ TIP: You can flag important notes in your wiki content by typing flags
|
|
|
364
364
|
like TODO or IMPORTANT! on the same line, and then use `:SWSearch` and
|
|
365
365
|
`:cl` to see all instances of them across your entire wiki.
|
|
366
366
|
|
|
367
|
+
It also exists a version of the `:SWSearch`-command which directly
|
|
368
|
+
opens a navigatable list of the matches:
|
|
369
|
+
|
|
370
|
+
- `:SWSearchList [term]`
|
|
371
|
+
- `:SWSL [term]` is an alias
|
|
372
|
+
|
|
373
|
+
For more information about the list you can try `:h copen` and `:h clist`.
|
|
374
|
+
|
|
375
|
+
In the navigation-list you can select an element with normal navigation
|
|
376
|
+
(`h`, `j`, `k`, `l`, or arrows) and press `<Enter>` to open the page.
|
|
377
|
+
To open the page but staying on the selection (instead of jumping to
|
|
378
|
+
the now opened page) you can instead press `<space>`.
|
|
379
|
+
|
|
380
|
+
|
|
367
381
|
## Revision history and distributed workflows
|
|
368
382
|
|
|
369
383
|
SoyWiki delegates revision-tracking, syncing, and collaboration
|
data/lib/soywiki.rb
CHANGED
|
@@ -2,7 +2,7 @@ require 'string_ext'
|
|
|
2
2
|
require 'path_helper'
|
|
3
3
|
module Template_Substitution; end
|
|
4
4
|
module Soywiki
|
|
5
|
-
VERSION = '0.9.8.2
|
|
5
|
+
VERSION = '0.9.8.2'
|
|
6
6
|
WIKI_WORD = /\b([a-z0-9][\w_]+\.)?[A-Z][a-z]+[A-Z0-9]\w*\b/
|
|
7
7
|
SCHEMES = %w{https http file soyfile}
|
|
8
8
|
HYPERLINK = %r|\b(?:#{SCHEMES.join('|')})://[^ >)\n\]]+|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: soywiki
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.8.2
|
|
4
|
+
version: 0.9.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Choi
|
|
@@ -64,9 +64,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
64
64
|
version: '0'
|
|
65
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
|
-
- - "
|
|
67
|
+
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version:
|
|
69
|
+
version: '0'
|
|
70
70
|
requirements:
|
|
71
71
|
- |
|
|
72
72
|
For optional compilation of the wiki to html you will need:
|