Commit 8a7de1a3 authored by Marco Bartolini's avatar Marco Bartolini
Browse files

removed some template variables

parent 8b1a63a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# {{project-name}}
# Skeleton project

Briefly describe your project here

+8 −8
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ source_suffix = '.rst'
master_doc = 'index'

# General information about the project.
project = 'skeleton'
project = 'Skeleton project'
copyright = '2018, Marco Bartolini'
author = 'Marco Bartolini'

@@ -133,7 +133,7 @@ html_static_path = ['_static']
# -- Options for HTMLHelp output ------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'skeletondoc'
# htmlhelp_basename = 'skeletondoc'


# -- Options for LaTeX output ---------------------------------------------
@@ -160,8 +160,8 @@ latex_elements = {
# (source start file, target name, title,
#  author, documentclass [howto, manual, or own class]).
latex_documents = [
    (master_doc, 'skeleton.tex', 'skeleton Documentation',
     'Marco Bartolini', 'manual'),
    (master_doc, '{{project-name}}.tex', '{{project-name}} Documentation',
     '{{author}}', 'manual'),
]


@@ -170,8 +170,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
    (master_doc, 'skeleton', 'skeleton Documentation',
     [author], 1)
    (master_doc, '{{project-name}}', '{{project-name}} Documentation',
     [{{author}}], 1)
]


@@ -181,8 +181,8 @@ man_pages = [
# (source start file, target name, title, author,
#  dir menu entry, description, category)
texinfo_documents = [
    (master_doc, 'skeleton', 'skeleton Documentation',
     author, 'skeleton', 'One line description of project.',
    (master_doc, '{{project-name}}', '{{project-name}} Documentation',
     {{author}}, '{{project-name}}', 'One line description of project.',
     'Miscellaneous'),
]