This commit is contained in:
2026-07-25 07:32:23 +01:00
commit 69c59ebc07
7 changed files with 1029 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import yaml
import os
from docgen import DocGen
input_file_path = os.path.join('examples', 'example_docgen_product.yaml')
output_file_path = os.path.join('examples', 'example_docgen_output.md')
with open(input_file_path) as f:
file = yaml.safe_load(f)
with open(output_file_path,'w') as md:
md.write(DocGen(file).wiki_on_a_page())
# DocGen(file).release_notes_idea()