From aabb26e598a0eeb604a4d33270d23e324c95ba5d Mon Sep 17 00:00:00 2001 From: Alec Perkins Date: Fri, 7 Sep 2012 13:57:44 -0400 Subject: [PATCH] [docs] Add 'img' to static file processing. --- mkdocs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.py b/mkdocs.py index c7921fcdf..63e15d8f5 100755 --- a/mkdocs.py +++ b/mkdocs.py @@ -28,7 +28,7 @@ sub_header = '
  • {{ title }}
  • ' page = open(os.path.join(docs_dir, 'template.html'), 'r').read() # Copy static files -for static in ['css', 'js']: +for static in ['css', 'js', 'img']: source = os.path.join(docs_dir, 'static', static) target = os.path.join(html_dir, static) if os.path.exists(target):