Skip to content

Commit 3d0401b

Browse files
committedJul 15, 2015
minor fixes in the extending document
1 parent d9559f9 commit 3d0401b

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed
 

‎CHANGES.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
New in master
2+
=============
3+
4+
Bugfixes
5+
--------
6+
7+
Minor improvements in the extending document.
8+
19
New in v7.6.1
210
=============
311

‎docs/extending.txt

+10-4
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ a stub for a hypothetical system called "Templater":
242242
template search mechanism."""
243243
pass
244244

245+
You can see a real example in `the Jinja plugin <https://github.com/getnikola/nikola/blob/master/nikola/plugins/template/jinja.py>`__
245246

246247
Task Plugins
247248
------------
@@ -361,7 +362,7 @@ PageCompiler Plugins
361362
--------------------
362363

363364
These plugins implement markup languages, they take sources for posts or pages and
364-
create HTML or other output files. A good example is the ``misaka`` plugin.
365+
create HTML or other output files. A good example is `the misaka plugin. <https://github.com/getnikola/plugins/tree/master/v7/misaka>`__
365366

366367
They must provide:
367368

@@ -381,12 +382,15 @@ metadata contained in the file.
381382
RestExtension Plugins
382383
---------------------
383384

384-
Implement directives for reStructuredText, see ``media.py`` for a simple example.
385+
Implement directives for reStructuredText, see `media.py <https://github.com/getnikola/nikola/blob/master/nikola/plugins/compile/rest/media.py>`__ for a simple example.
385386

386387
MarkdownExtension Plugins
387388
-------------------------
388389

389-
Implement Markdown extensions, see ``mdx_nikola.py`` for a simple example.
390+
Implement Markdown extensions, see `mdx_nikola.py <https://github.com/getnikola/nikola/blob/master/nikola/plugins/compile/markdown/mdx_nikola.py>`__ for a simple example.
391+
392+
Note that python markdown extensions are often also available as separate packages. This is only meant to ship extensions
393+
along with Nikola.
390394

391395
SignalHandler Plugins
392396
---------------------
@@ -424,13 +428,15 @@ Currently Nikola emits the following signals:
424428
'undeployed': # all files not deployed since they are either future posts/drafts
425429
}
426430

431+
One example is the `deploy_hooks plugin. <https://github.com/getnikola/plugins/tree/master/v6/deploy_hooks>`__
432+
427433
ConfigPlugin Plugins
428434
--------------------
429435

430436
Does nothing specific, can be used to modify the site object (and thus the config).
431437

432438
Put all the magic you want in ``set_site()``, and don’t forget to run the one
433-
from ``super()``.
439+
from ``super()``. Example plugin: `navstories <https://github.com/getnikola/plugins/tree/master/v7/navstories>`__
434440

435441
PostScanner Plugins
436442
-------------------

0 commit comments

Comments
 (0)
Please sign in to comment.