New upstream version 8.1.0
This commit is contained in:
28
thirdparty/source/nu/docs/conf.py
vendored
Normal file
28
thirdparty/source/nu/docs/conf.py
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
needs_sphinx = '1.0'
|
||||
|
||||
project = 'nu'
|
||||
copyright = '2016, dhivael'
|
||||
author = 'dhivael'
|
||||
release = '0.1.0'
|
||||
version = release
|
||||
language = 'en'
|
||||
|
||||
master_doc = 'index'
|
||||
primary_domain = 'cpp'
|
||||
source_suffix = '.rst'
|
||||
highlight_language = 'cpp'
|
||||
html_theme = 'agogo'
|
||||
html_show_sourcelink = False
|
||||
html_static_path = ['_static']
|
||||
pygments_style = 'sphinx'
|
||||
|
||||
cpp_index_common_prefix = ['nu::']
|
||||
|
||||
nitpick_ignore = [
|
||||
('cpp:typeOrConcept', 'std'),
|
||||
('cpp:typeOrConcept', 'std::exception'),
|
||||
('cpp:typeOrConcept', 'std::error_code'),
|
||||
]
|
||||
28
thirdparty/source/nu/docs/extract.awk
vendored
Normal file
28
thirdparty/source/nu/docs/extract.awk
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
BEGIN {
|
||||
indent = "";
|
||||
}
|
||||
|
||||
$1 == "//-" {
|
||||
sub("^ ", "", indent);
|
||||
}
|
||||
|
||||
$1 ~ "^//[+-/0]$", $1 ~ "^//[+-/0]$" {
|
||||
line = $0;
|
||||
sub("^[ \t]*//. ?", "", line);
|
||||
|
||||
if (line ~ /↩$/)
|
||||
sub("↩$", "\\", line);
|
||||
|
||||
if ($1 == "//0")
|
||||
print line;
|
||||
else
|
||||
print indent line;
|
||||
}
|
||||
|
||||
$1 == "//+" {
|
||||
indent = indent " ";
|
||||
}
|
||||
|
||||
$1 !~ "^//[+-/0]$" {
|
||||
print "";
|
||||
}
|
||||
17
thirdparty/source/nu/docs/index.rst
vendored
Normal file
17
thirdparty/source/nu/docs/index.rst
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
Library overview
|
||||
================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
:caption: Contents:
|
||||
:glob:
|
||||
|
||||
extracted/include/nu/*
|
||||
|
||||
|
||||
Indices and tables
|
||||
==================
|
||||
|
||||
* :ref:`genindex`
|
||||
* :ref:`modindex`
|
||||
* :ref:`search`
|
||||
Reference in New Issue
Block a user