You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/extending.txt
+10-4
Original file line number
Diff line number
Diff line change
@@ -242,6 +242,7 @@ a stub for a hypothetical system called "Templater":
242
242
template search mechanism."""
243
243
pass
244
244
245
+
You can see a real example in `the Jinja plugin <https://github.com/getnikola/nikola/blob/master/nikola/plugins/template/jinja.py>`__
245
246
246
247
Task Plugins
247
248
------------
@@ -361,7 +362,7 @@ PageCompiler Plugins
361
362
--------------------
362
363
363
364
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>`__
365
366
366
367
They must provide:
367
368
@@ -381,12 +382,15 @@ metadata contained in the file.
381
382
RestExtension Plugins
382
383
---------------------
383
384
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.
385
386
386
387
MarkdownExtension Plugins
387
388
-------------------------
388
389
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.
390
394
391
395
SignalHandler Plugins
392
396
---------------------
@@ -424,13 +428,15 @@ Currently Nikola emits the following signals:
424
428
'undeployed': # all files not deployed since they are either future posts/drafts
425
429
}
426
430
431
+
One example is the `deploy_hooks plugin. <https://github.com/getnikola/plugins/tree/master/v6/deploy_hooks>`__
432
+
427
433
ConfigPlugin Plugins
428
434
--------------------
429
435
430
436
Does nothing specific, can be used to modify the site object (and thus the config).
431
437
432
438
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>`__
0 commit comments