|
@@ -70,7 +70,9 @@ def include_code(preprocessor, tag, markup):
|
|
title = os.path.basename(src)
|
|
title = os.path.basename(src)
|
|
|
|
|
|
static_dir = settings.get('STATIC_OUT_DIR', 'static')
|
|
static_dir = settings.get('STATIC_OUT_DIR', 'static')
|
|
|
|
+
|
|
url = '/{0}/{1}/{2}'.format(static_dir, code_dir, src)
|
|
url = '/{0}/{1}/{2}'.format(static_dir, code_dir, src)
|
|
|
|
+ url = re.sub('/+', '/', url)
|
|
|
|
|
|
open_tag = ("<figure class='code'>\n<figcaption><span>{title}</span> "
|
|
open_tag = ("<figure class='code'>\n<figcaption><span>{title}</span> "
|
|
"<a href='{url}'>download</a></figcaption>".format(title=title,
|
|
"<a href='{url}'>download</a></figcaption>".format(title=title,
|