mirror of
https://github.com/public-apis/public-apis.git
synced 2025-05-10 07:36:47 +02:00
Update Markdown2JSON converter for CORS
This commit is contained in:
parent
b2b5c2682e
commit
aa74230ba4
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,8 @@ def markdown_to_json(filename, anchor):
|
||||||
'Description': chunks[1],
|
'Description': chunks[1],
|
||||||
'Auth': None if chunks[2].upper() == 'NO' else chunks[2].strip('`'),
|
'Auth': None if chunks[2].upper() == 'NO' else chunks[2].strip('`'),
|
||||||
'HTTPS': True if chunks[3].upper() == 'YES' else False,
|
'HTTPS': True if chunks[3].upper() == 'YES' else False,
|
||||||
'Link': chunks[4].replace('[Go!]', '')[1:-1],
|
'CORS': chunks[4].strip('`'),
|
||||||
|
'Link': chunks[5].replace('[Go!]', '')[1:-1],
|
||||||
'Category': category,
|
'Category': category,
|
||||||
}
|
}
|
||||||
entries.append(entry)
|
entries.append(entry)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue