Skip to content

Commit 0d2d3c7

Browse files
committed
disable hiding answer of FAQ entries
- unhiding them does not work since the SCIP 9.2.0 docu, probably due to changes when adapting to doxygen 1.9.6 - and we want the answers to be visible anyway
1 parent 93d7e4c commit 0d2d3c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/inc/faq/parser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def write_faqinc(f, sections, sectiontimes):
149149
f.write(' <a class="reveal_faq" href="#%s">%s</a>\n\n' % (label, question))
150150
f.write(' <a href="#" class="pull-right"><span class="fa fa-caret-up" title="go to top"></span></a>\n')
151151
f.write(' </h4>\n')
152-
f.write(' <div id="%s_ans" class="answer">\n' % label)
152+
f.write(' <div id="%s_ans">\n' % label)
153153
f.write(' %s' % answer)
154154
f.write(' </div>\n')
155155
f.write(' </li>\n ')

0 commit comments

Comments
 (0)