forked from Uberspace/lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
127 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,25 +2,24 @@ | |
|
||
Stores a list of authors and tags for each document. | ||
|
||
The data is stored in the environment under the key ``authors`` and ``tags``. | ||
The data is stored in the environment under the key `authors` and `tags`. | ||
It's a dictionary, where the keys are the names of the documents and the values | ||
a list of author / tags. | ||
|
||
## Authors | ||
|
||
Use the ``.. author:: Author Name <email or url>`` directive to add an author to | ||
a document. With ``.. author_list::`` you can add a paragraph, that list all | ||
Use the `.. author:: Author Name <email or url>` directive to add an author to | ||
a document. With `.. author_list::` you can add a paragraph, that list all | ||
authors that are set for a document, like this:: | ||
|
||
Written by: author1 <[email protected]>, author2 <site.org> | ||
|
||
### All Authors | ||
|
||
The ``.. allauthors::`` directive generates an ordered list of all authors, | ||
The `.. allauthors::` directive generates an ordered list of all authors, | ||
sorted by the number of contributions in descending order. | ||
|
||
## Tags | ||
|
||
Use the ``.. tag:: sometag`` directive to add a tag to a document. With ``.. | ||
tag_list::`` you can add a paragraph, that list all tags that are set for a | ||
Use the `.. tag:: sometag` directive to add a tag to a document. With `.. tag_list::` you can add a paragraph, that list all tags that are set for a | ||
document, linking to the tag detail pages. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup, find_packages | ||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
setup( | ||
name = 'authorship', | ||
version = '1.0.0', | ||
author = 'uberspace.de', | ||
author_email = '[email protected]', | ||
packages = find_packages(), | ||
install_requires = [ | ||
], | ||
name="authorship", | ||
version="1.0.0", | ||
author="uberspace.de", | ||
author_email="[email protected]", | ||
packages=find_packages(), | ||
install_requires=[], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
-e ./authorship | ||
feedgen==0.9.0 | ||
pre-commit==2.13.* | ||
sphinx==3.0.3 | ||
sphinx-rtd-theme==0.4.* | ||
sphinx-autobuild==0.7.* | ||
feedgen==0.9.0 | ||
sphinx-notfound-page==0.3 | ||
sphinx-rtd-theme==0.4.* | ||
sphinxcontrib-spelling==7.1.0 | ||
-e ./authorship | ||
pre-commit==2.13.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -381,4 +381,3 @@ You can run this script with: | |
Tested with HedgeDoc 1.7.1, Uberspace 7.8.1.0 | ||
|
||
.. author_list:: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.