Skip to content

Commit

Permalink
disable hiding answer of FAQ entries
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
svigerske committed Jan 28, 2025
1 parent 93d7e4c commit 0d2d3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/inc/faq/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def write_faqinc(f, sections, sectiontimes):
f.write(' <a class="reveal_faq" href="#%s">%s</a>\n\n' % (label, question))
f.write(' <a href="#" class="pull-right"><span class="fa fa-caret-up" title="go to top"></span></a>\n')
f.write(' </h4>\n')
f.write(' <div id="%s_ans" class="answer">\n' % label)
f.write(' <div id="%s_ans">\n' % label)
f.write(' %s' % answer)
f.write(' </div>\n')
f.write(' </li>\n ')
Expand Down

0 comments on commit 0d2d3c7

Please sign in to comment.