Skip to content

Commit edc950f

Browse files
committedJul 4, 2015
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 49c1ec0 commit edc950f

File tree

14 files changed

+33
-2
lines changed

14 files changed

+33
-2
lines changed
 

‎README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Tests = test-suite
5353
[Nikola]
5454
MinVersion = version-number
5555
MaxVersion = version-number
56+
Compiler = compiler-that-uses-extensions
5657

5758
[Documentation]
5859
Author = authors-name
@@ -69,7 +70,11 @@ In `[Core]`, you need to provide the `Name` of your plugin and the `Module` your
6970

7071
#### `[Nikola]` (optional)
7172

72-
If you require a specific version of Nikola, set `MinVersion` and `MaxVersion` accordingly. Neither field is mandatory, and you can even skip this section altogether if you do not need it.
73+
If you require a specific version of Nikola, set `MinVersion` and `MaxVersion` accordingly. Those fields are not mandatory.
74+
75+
If the plugin is a compiler extension, you need to set the `Compiler` here. Otherwise, skip this field.
76+
77+
You can skip this section altogether if you do not need it.
7378

7479
#### `[Documentation]`
7580

‎output/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
<a href="https://themes.getnikola.com">Themes</a>
134134
</li>
135135
<li class="active">
136-
<a href="https://plugins.getnikola.com">Plugins</a><span class="sr-only"> (active)</span>
136+
<a href="https://plugins.getnikola.com">Plugins<span class="sr-only"> (active)</span></a>
137137
</li>
138138
<li>
139139
<a href="https://users.getnikola.com">Users</a>

‎v6/book_figure/book_figure.plugin

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Name = book_figure
33
Module = book_figure
44
Tests = test_book_figure
55

6+
[Nikola]
7+
Compiler = rest
8+
69
[Documentation]
710
Author = Ivan Teoh
811
Version = 0.3

‎v6/graphviz/graphviz.plugin

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Name = graphviz
33
Module = graphviz
44

5+
[Nikola]
6+
Compiler = rest
7+
58
[Documentation]
69
Author = Roberto Alsina
710
Version = 0.1

‎v6/html_roles/html_roles.plugin

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Name = html_roles
33
Module = html_roles
44

5+
[Nikola]
6+
Compiler = rest
7+
58
[Documentation]
69
Author = Aru Sahni
710
Version = 0.1

‎v6/link_figure/link_figure.plugin

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Name = link_figure
33
Module = link_figure
44
Tests = test_link_figure
55

6+
[Nikola]
7+
Compiler = rest
8+
69
[Documentation]
710
Author = Ivan Teoh
811
Version = 0.2

‎v6/microdata/microdata.plugin

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Module = microdata
44
Tests = test_microdata
55

66
[Nikola]
7+
Compiler = rest
78
MinVersion = 6.3.0
89

910
[Documentation]

‎v6/rstdiff/rstdiff.plugin

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Name = rstdiff
33
Module = rstdiff
44

55
[Nikola]
6+
Compiler = rest
67
MinVersion = 6.0.0
78

89
[Documentation]

‎v7/emoji/emoji.plugin

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Name = emoji
33
Module = emoji
44

55
[Nikola]
6+
Compiler = rest
67
MinVersion = 7.4.0
78

89
[Documentation]

‎v7/forms/forms.plugin

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Name = rest_forms
33
Module = forms
44

5+
[Nikola]
6+
Compiler = rest
7+
58
[Documentation]
69
Author = Roberto Alsina
710
Version = 0.1

‎v7/gallery_directive/gallery_directive.plugin

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Name = gallery_directive
33
Module = gallery_directive
44

55
[Nikola]
6+
Compiler = rest
67
MinVersion = 7.4.1
78

89
[Documentation]

‎v7/pyplots/pyplots.plugin

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Name = pyplots
33
Module = pyplots
44

5+
[Nikola]
6+
Compiler = rest
7+
58
[Documentation]
69
Author = Roberto Alsina
710
Version = 0.1

‎v7/rest_html5/rest_html5.plugin

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Name = rest_html5
33
Module = rest_html5
44

5+
[Nikola]
6+
Compiler = rest
7+
58
[Documentation]
69
Author = Roberto Alsina, Pelle Nilsson
710
Version = 1.0

‎v7/sphinx_roles/sphinx_roles.plugin

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Name = sphinx_roles
33
Module = sphinx_roles
44

55
[Nikola]
6+
Compiler = rest
67
MinVersion = 7.4.0
78

89
[Documentation]

0 commit comments

Comments
 (0)
Please sign in to comment.