Unverified Commit 7fb4f770 authored by Dave Machado's avatar Dave Machado
Browse files

Update formatting of markdown scripts

parent deef6e15
#!/usr/bin/env python3 #!/usr/bin/env python3
import sys
import json import json
import sys
def markdown_to_json(filename, anchor): def markdown_to_json(filename, anchor):
......
...@@ -89,7 +89,7 @@ def check_format(filename): ...@@ -89,7 +89,7 @@ def check_format(filename):
# START Link # START Link
# url should be wrapped in '[Go!]()' Markdown syntax # url should be wrapped in '[Go!]()' Markdown syntax
link = segments[index_link] link = segments[index_link]
if not link.startswith('[Go!](') or not link.endswith(')'): if not link.startswith('[Go!](http') or not link.endswith(')'):
add_error(line_num, 'link format should be "[Go!](LINK)"') add_error(line_num, 'link format should be "[Go!](LINK)"')
# END Link # END Link
# END Check Entries # END Check Entries
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment