danyork / makefaq

makefaq is a Python program that creates a Frequently Asked Questions (FAQ) list from a specially formatted text data file. For output, it can can generate either an HTML page, a text file, or a DocBook XML file. (NOTE: Right now (Jan 2009) I am not really doing much with this program other than using it as a way to learn about git and github.)

This URL has Read+Write access

makefaq / faqheader.html
100644 27 lines (17 sloc) 0.708 kb
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
<html>
<head>
 
<!-- Change this title to something more appropriate for your FAQ. You
do NOT need to leave the reference to makefaq.py in there. -->
 
<title>Frequently-Asked Questions built by makefaq.py</title>
 
<!-- If you do not want to use a CSS stylesheet, remove this next line. -->
 
<link type="text/css" rel="stylesheet" href="faq.css">
 
</head>
<body bgcolor="#FFFFFF">
 
<h1>
<!-- Change this text line below to something more appropriate -->
<code>makefaq</code> Frequently-Asked Questions
 
</h1>
 
<!-- Change this line to have your contact information in it. -->
<p>For more information about this faq, please contact <b>EDIT FAQHEADER.HTML
AND PUT YOUR NAME AND CONTACT INFO HERE</b>
 
<hr>