Initial commit

Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
Juraj Oravec 2022-04-27 23:19:52 +02:00
commit 0758a391c7
Signed by: SGOrava
GPG Key ID: 13660A3F1D9F093B
2 changed files with 7 additions and 0 deletions

1
Jenkinsfile vendored Normal file
View File

@ -0,0 +1 @@
deploy_falkon()

6
convert.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
find content/qml -type f -name "*.md" -exec sed -i '1 s/#/---\ntitle:/; 1 s/.*[^0-9]\([0-9]\+\)[^0-9]*$/\0\nnumber: \1/;1 s/$/\n---\n/; s|\.\./|/|g' {} \;
find content/python -type f -name "*.md" -exec sed -i '1 s/#/---\ntitle:/; 1 s/.*[^0-9]\([0-9]\+\)[^0-9]*$/\0\nnumber: \1/;1 s/$/\n---\n/; s|\.\./|/|g' {} \;
exit 0