##// END OF EJS Templates
Fixing issue preventing the correct read of images by full_html and reveal exporters....
Damián Avila -
Show More
@@ -65,14 +65,14 def strip_dollars(text):
65 65
66 66 def rm_fake(text):
67 67 """
68 Remove all occurrences of '/files/' from text
68 Remove all occurrences of 'files/' from text
69 69
70 70 Parameters
71 71 ----------
72 72 text : str
73 Text to remove '/files/' from
73 Text to remove 'files/' from
74 74 """
75 return text.replace('/files/', '')
75 return text.replace('files/', '')
76 76
77 77
78 78 def python_comment(text):
General Comments 0
You need to be logged in to leave comments. Login now