Skip to content

Commit 24ec126

Browse files
committed
Adding UUID and filename to repo contents
Updated build.py Ran build.py
1 parent 443ecaa commit 24ec126

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

build.py

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
mdString += ' ' + docData['regex'] + ' \n' # Print as code in markdown
1919
mdString += '### Description' + ' \n'
2020
mdString += docData['description'] + ' \n'
21+
mdString += 'UUID:' + docData['uuid'] + ' \n'
22+
mdString += 'File:' + regexDoc + ' \n'
2123
mdString += 'Keywords: ' + str(docData['keywords']) + ' \n'
2224
mdString += 'Authors: ' + str(docData['authors']) + ' \n\n'
2325
mdString += '---' + ' \n'

docs/repo-contents.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Compiled: 2013-02-21
77
(.*)(\w+)\W+(\d?\d)\W+(\d\d\d\d)(.*)
88
### Description
99
This is just a sample description of a regex that I have not made.
10+
UUID:3b922789-f92f-4646-8985-d34b6a390636
11+
File:./regex/3b922789-f92f-4646-8985-d34b6a390636.yaml
1012
Keywords: ['sample', 'testing']
1113
Authors: ['Jason Best - [email protected]']
1214

@@ -15,6 +17,8 @@ Authors: ['Jason Best - [email protected]']
1517
RegExStringHere
1618
### Description
1719
DescriptionHere
20+
UUID:3f1b5bd7-64b6-4990-9519-7eab11be7e08
21+
File:./regex/3f1b5bd7-64b6-4990-9519-7eab11be7e08.yaml
1822
Keywords: ['key1', 'key2']
1923
Authors: ['author1', 'author2']
2024

@@ -23,6 +27,8 @@ Authors: ['author1', 'author2']
2327
RegExStringHere
2428
### Description
2529
DescriptionHere
30+
UUID:5fd9da04-1077-4984-a29d-af63381571cb
31+
File:./regex/5fd9da04-1077-4984-a29d-af63381571cb.yaml
2632
Keywords: ['key1', 'key2']
2733
Authors: ['author1', 'author2']
2834

0 commit comments

Comments
 (0)