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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
/*
* mkd2html: parse a markdown input file and generate a web page.
*
* usage: mkd2html [options] filename
* or mkd2html [options] < markdown > html
*
* options
* -css css-file
* -header line-to-add-to-<HEADER>
* -footer line-to-add-before-</BODY>
*
* example:
*
* mkd2html -css /~orc/pages.css syntax
* ( read syntax OR syntax.text, write syntax.html )
*/
/*
* Copyright (C) 2007 David L Parsons.
* The redistribution terms are provided in the COPYRIGHT file that must
* be distributed with this source code.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_BASENAME
# ifdef HAVE_LIBGEN_H
# include <libgen.h>
# else
# include <unistd.h>
# endif
#endif
#include <stdarg.h>
#include "mkdio.h"
#include "cstring.h"
#include "amalloc.h"
#include "gethopt.h"
char *pgm = "mkd2html";
extern int notspecial(char *filename);
#ifndef HAVE_BASENAME
char *
basename(char *path)
{
char *p;
if ( p = strrchr(path, '/') )
return 1+p;
return path;
}
#endif
void
fail(char *why, ...)
{
va_list ptr;
va_start(ptr,why);
fprintf(stderr, "%s: ", pgm);
vfprintf(stderr, why, ptr);
fputc('\n', stderr);
va_end(ptr);
exit(1);
}
enum { GFM, ADD_CSS, ADD_HEADER, ADD_FOOTER };
struct h_opt opts[] = {
{ GFM, "gfm",'G', 0, "Github style markdown" },
{ ADD_CSS, "css", 0, "url", "Additional css for this page" },
{ ADD_HEADER, "header", 0, "header", "Additonal headers for this page" },
{ ADD_FOOTER, "footer", 0, "footer", "Additional footers for this page" },
};
#define NROPTS (sizeof opts/sizeof opts[0])
#if USE_H1TITLE
extern char* mkd_h1_title(MMIOT *);
#endif
int
main(argc, argv)
char **argv;
{
char *h;
char *source = 0, *dest = 0;
MMIOT *mmiot;
int i;
int gfm = 0;
FILE *input, *output;
STRING(char*) css, headers, footers;
struct h_opt *res;
struct h_context flags;
CREATE(css);
CREATE(headers);
CREATE(footers);
pgm = basename(argv[0]);
hoptset(&flags, argc, argv);
hopterr(&flags, 1);
while ( res = gethopt(&flags, opts, NROPTS) ) {
if ( res == HOPTERR ) {
hoptusage(pgm, opts, NROPTS, "source [dest]");
exit(1);
}
switch ( res->option ) {
case ADD_CSS:
EXPAND(css) = hoptarg(&flags);
break;
case ADD_HEADER:
EXPAND(headers) = hoptarg(&flags);
break;
case ADD_FOOTER:
EXPAND(footers) = hoptarg(&flags);
break;
case GFM:
gfm = 1;
break;
default:
fprintf(stderr, "unknown option?\n");
break;
}
}
argc -= hoptind(&flags);
argv += hoptind(&flags);
switch ( argc ) {
char *p, *dot;
case 0:
input = stdin;
output = stdout;
break;
case 1:
case 2:
dest = malloc(strlen(argv[argc-1]) + 6);
source = malloc(strlen(argv[0]) + 6);
if ( !(source && dest) )
fail("out of memory allocating name buffers");
strcpy(source, argv[0]);
strcpy(dest, argv[argc-1]);
if (( p = strrchr(source, '/') ))
p = source;
else
++p;
if ( (input = fopen(source, "r")) == 0 ) {
strcat(source, ".text");
if ( (input = fopen(source, "r")) == 0 )
fail("can't open either %s or %s", argv[0], source);
}
if ( notspecial(dest) ) {
if (( dot = strrchr(dest, '.') ))
*dot = 0;
strcat(dest, ".html");
}
if ( (output = fopen(dest, "w")) == 0 )
fail("can't write to %s", dest);
break;
default:
hoptusage(pgm, opts, NROPTS, "source [dest]");
exit(1);
}
mmiot = gfm ? gfm_in(input, 0) : mkd_in(input, 0);
if ( mmiot == 0 )
fail("can't read %s", source ? source : "stdin");
if ( !mkd_compile(mmiot, 0) )
fail("couldn't compile input");
h = mkd_doc_title(mmiot);
#if USE_H1TITLE
if ( ! h )
h = mkd_h1_title(mmiot);
#endif
/* print a header */
fprintf(output,
"<!doctype html public \"-//W3C//DTD HTML 4.0 Transitional //EN\">\n"
"<html>\n"
"<head>\n"
" <meta name=\"GENERATOR\" content=\"mkd2html %s\">\n", markdown_version);
fprintf(output," <meta http-equiv=\"Content-Type\""
" content=\"text/html; charset=utf-8\">\n");
for ( i=0; i < S(css); i++ )
fprintf(output, " <link rel=\"stylesheet\"\n"
" type=\"text/css\"\n"
" href=\"%s\" />\n", T(css)[i]);
fprintf(output," <title>");
if ( h )
mkd_generateline(h, strlen(h), output, 0);
/* xhtml requires a <title> in the header, even if it doesn't
* contain anything
*/
fprintf(output, "</title>\n");
for ( i=0; i < S(headers); i++ )
fprintf(output, " %s\n", T(headers)[i]);
fprintf(output, "</head>\n"
"<body>\n");
/* print the compiled body */
mkd_generatehtml(mmiot, output);
for ( i=0; i < S(footers); i++ )
fprintf(output, "%s\n", T(footers)[i]);
fprintf(output, "</body>\n"
"</html>\n");
mkd_cleanup(mmiot);
exit(0);
}
|