
* docs: restructuring & introduction of mkdocs with versioning provided by mike * docs: ad repositories section to sophia examples * docs: refactoring and consistent naming of æternity * docs: hint for new file destination * docs: revert capital letter * docs: accept proposed changes * docs: fix anchors in stdlib
8 lines
164 B
Python
8 lines
164 B
Python
import glob
|
|
import shutil
|
|
|
|
def pre_build(**kwargs):
|
|
for file in glob.glob('../docs/*.md'):
|
|
shutil.copy(file, 'docs')
|
|
shutil.copy('../CHANGELOG.md', 'docs')
|