see #5, fix *.md link error

This commit is contained in:
Changkun Ou
2018-06-24 12:22:20 +02:00
parent 552cae9cbe
commit b2b48a91c8

View File

@@ -1,6 +1,7 @@
# !/usr/bin/env python3 # !/usr/bin/env python3
# author: changkun<hi@changkun.us> # author: changkun<hi@changkun.us>
import os import os
import re
source_dir = [ source_dir = [
'../book/zh-cn/' '../book/zh-cn/'
@@ -26,4 +27,4 @@ for index, source in enumerate(source_dir):
if any(keyword in line for keyword in ignores): if any(keyword in line for keyword in ignores):
continue continue
else: else:
output_file.write(line) output_file.write(re.sub(r'(./)(.*?)(.md)', r'../\2/index.html', line))