-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFAQ.cfg
More file actions
executable file
·31 lines (29 loc) · 930 Bytes
/
FAQ.cfg
File metadata and controls
executable file
·31 lines (29 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[output]
# the filename that will be created by FAQtor when this configuration
# file is used
filename: FAQ.html
[page]
#
# You can include the start and end configuration settings inline
#
start: <html>\
<head><title>Your Project FAQ</title></head>\
<body bgcolor="white">\
<center><h1>Your Project Name Frequently Asked Questions</h1></center>
<center><h3>Maintained by <A HREF="mailto:dan.nygren@gmail.com">
dan.nygren@gmail.com</A></h3></center>
end: </body></html>
#
# or you can include files that contain the start and/or end information
#
# start: filename = faqtor.start
# end: filename = faqtor.end
#
# The divider between each Q&A
#
sep: <hr>
[format]
section: <h1 id="%(section)s">%(section)s</h1>
question: Q. %(sindex)s.%(qindex)s %(question)s<br>
answer: <h2>A. %(sindex)s.%(qindex)s %(question)s</h2><br>%(answer)s
top: <p align="right">Return to top </p>