[docs] fixed links

This commit is contained in:
Rushabh Mehta
2015-12-04 16:00:38 +05:30
parent e1f8b1d695
commit 2f273674e9
46 changed files with 87 additions and 79 deletions

10
erpnext/docs/temp.py Normal file
View File

@@ -0,0 +1,10 @@
import os, re
for basepath, folders, files in os.walk("."):
for f in files:
if f.endswith(".html") or f.endswith(".md"):
with open(os.path.join(basepath, f), "r") as c:
content = c.read()
for path in re.findall("""{{.?docs_base_url.?}}([^'"\)]*)""", content):
print path