diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-05-11 14:03:27 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-05-16 14:00:49 +0300 |
commit | c4fcd7cabb83fcac1e83e17845b1fede5401aa25 (patch) | |
tree | d414486838d96dd4b512729d2f99338b61d2614f /Documentation/kernel-hacking/conf.py | |
parent | 25a0da73f24c95d57381bedd9cd89e4929b1bfde (diff) | |
download | linux-c4fcd7cabb83fcac1e83e17845b1fede5401aa25.tar.xz |
docs-rst: convert kernel-hacking to ReST
Use pandoc to convert documentation to ReST by calling
Documentation/sphinx/tmplcvt script.
- Manually adjusted to use ..note and ..warning
- Minor fixes for it to be parsed without errors
- Use **bold** for emphasis.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/kernel-hacking/conf.py')
-rw-r--r-- | Documentation/kernel-hacking/conf.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/kernel-hacking/conf.py b/Documentation/kernel-hacking/conf.py new file mode 100644 index 000000000000..3d8acf0f33ad --- /dev/null +++ b/Documentation/kernel-hacking/conf.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8; mode: python -*- + +project = "Kernel Hacking Guides" + +tags.add("subproject") + +latex_documents = [ + ('index', 'kernel-hacking.tex', project, + 'The kernel development community', 'manual'), +] |