1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
From: =?utf-8?b?RnLDqWTDqXJpYyBCb25uYXJk?= <frediz@debian.org>
Date: Mon, 9 Jul 2018 17:21:23 +0200
Subject: Create pysassc man page
This patch intends to create a separate man page for the pysassc command line
utility, instead of having all the manual in the library's man page.
---
docs/conf.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index 921d65c..0efe559 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -226,8 +226,10 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
(
- 'index', 'libsass', u'libsass Documentation',
- [u'Hong Minhee'], 1,
+ 'index', 'libsass', u'libsass Documentation', [u'Hong Minhee'], 1,
+ ),
+ (
+ 'pysassc', 'pysassc', u'pysassc Documentation', [u'Hong Minhee'], 1,
),
]
|