- i[lang="en"] (23)
- sub (8)
- sup (2)
- i[lang="en"] (14:39)
| import os | |
| import urllib.request | |
| locale = 'ru' | |
| path = './files/' + locale + '/' | |
| urls = [] | |
| for r, d, f in os.walk(path): | |
| for file in f: | |
| if '.md' in file or '.html' in file: | |
| full_path = os.path.join(r, file) |