File tree 2 files changed +23
-2
lines changed
2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change
1
+ {% load latexify %}
1
2
< script src ="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.6.0/katex.min.js "> </ script >
2
3
< script >
3
- var math_latex_inline_elements = document . getElementsByClassName ( "django-latexify math inline" ) ;
4
- var math_latex_block_elements = document . getElementsByClassName ( "django-latexify math block" ) ;
4
+
5
+ var math_latex_inline_elements = document . getElementsByClassName ( '{% value_from_settings "LATEX_MATH_INLINE_CSS_CLASS" %}' ) ;
6
+ var math_latex_block_elements = document . getElementsByClassName ( '{% value_from_settings "LATEX_MATH_BLOCK_CSS_CLASS" %}' ) ;
5
7
latex_render_math ( math_latex_inline_elements , false ) ;
6
8
latex_render_math ( math_latex_block_elements , true ) ;
7
9
Original file line number Diff line number Diff line change @@ -82,3 +82,22 @@ def latexify(text,
82
82
83
83
return {'latex_type' : latex_type ,
84
84
'latex_text' : mark_safe (text )}
85
+
86
+
87
+ @register .tag
88
+ def value_from_settings (parser , token ):
89
+ try :
90
+ # split_contents() knows not to split quoted strings.
91
+ tag_name , var = token .split_contents ()
92
+ except ValueError :
93
+ raise template .TemplateSyntaxError , "%r tag requires a single argument" % token .contents .split ()[0 ]
94
+ return ValueFromSettings (var )
95
+
96
+
97
+ class ValueFromSettings (template .Node ):
98
+ def __init__ (self , var ):
99
+ self .arg = template .Variable (var )
100
+
101
+ def render (self , context ):
102
+ return getattr (latex_settings ,
103
+ re .sub (r'\W+' , '' , str (self .arg )))
You can’t perform that action at this time.
0 commit comments