mirror of https://gitlab.com/bashrc2/epicyon
Replace double quotes
parent
3c3a3a2ae6
commit
92f94e0ffb
|
@ -54,7 +54,7 @@ def insert_question(base_dir: str, translate: {},
|
||||||
continue
|
continue
|
||||||
content += \
|
content += \
|
||||||
'<input type="radio" name="answer" value="' + \
|
'<input type="radio" name="answer" value="' + \
|
||||||
choice['name'] + '" tabindex="10"> ' + \
|
choice['name'].replace('"', '\"') + '" tabindex="10"> ' + \
|
||||||
choice['name'] + '<br><br>\n'
|
choice['name'] + '<br><br>\n'
|
||||||
content += \
|
content += \
|
||||||
'<input type="submit" value="' + \
|
'<input type="submit" value="' + \
|
||||||
|
|
Loading…
Reference in New Issue