This repository was archived by the owner on May 11, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,11 @@ def _generate_program_list(language: LanguageCollection) -> list:
35
35
return list_items
36
36
37
37
38
+ def _generate_credit ():
39
+ return """This page was generated automatically by the Sample Programs Docs Generator.
40
+ Find out how to support this project [here](https://github.com/TheRenegadeCoder/sample-programs-docs-generator)."""
41
+
42
+
38
43
class ReadMeCatalog :
39
44
"""
40
45
An representation of the collection of READMEs in the Sample Programs repo.
@@ -62,6 +67,7 @@ def _build_readme(self, language: LanguageCollection) -> None:
62
67
page .add_section_break ()
63
68
page .add_content (* _generate_program_list (language ))
64
69
page .add_section_break ()
70
+ page .add_content (_generate_credit ())
65
71
self .pages [language .name ] = page
66
72
67
73
def _build_readmes (self ) -> None :
Original file line number Diff line number Diff line change 5
5
6
6
setuptools .setup (
7
7
name = "generate_docs" ,
8
- version = "2.0.3 " ,
8
+ version = "2.1.0 " ,
9
9
author = "The Renegade Coder" ,
10
10
author_email = "jeremy.grifski@therenegadecoder.com" ,
11
11
description = "A docs generation package for the Sample Programs repo" ,
You can’t perform that action at this time.
0 commit comments