This commit is contained in:
cclecle
2023-03-25 12:33:21 +00:00
parent 5d98ed441f
commit cf81c5f5f7

View File

@@ -43,18 +43,18 @@ From master git repository:
## Use in your project
### Sample code
```python
#from pychangelogfactory import ChangeLogFormater
#from pychangelogfactory import ChangeLogFormater
raw_changelog='''
feat: add a nice feature to the project
style: reindent the full Foo class
security: fix a security leak on the Foo2 component
'''
ChangeLogFormater.FactoryProcessFullChangelog(raw_changelog)
changelog = ChangeLogFormater.RenderFullChangelog()
print(changelog)
raw_changelog='''
feat: add a nice feature to the project
style: reindent the full Foo class
security: fix a security leak on the Foo2 component
'''
ChangeLogFormater.FactoryProcessFullChangelog(raw_changelog)
changelog = ChangeLogFormater.RenderFullChangelog()
print(changelog)
```
### Output(Raw)
#### Features :sparkles::