2011-04-15 08:36:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011, Vicent Marti
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "markdown.h"
|
2011-05-06 17:29:41 +00:00
|
|
|
#include "html.h"
|
2011-04-26 11:00:38 +00:00
|
|
|
#include "buffer.h"
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define READ_UNIT 1024
|
|
|
|
#define OUTPUT_UNIT 64
|
|
|
|
|
|
|
|
/* main • main function, interfacing STDIO with the parser */
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct buf *ib, *ob;
|
2011-07-19 19:55:07 +00:00
|
|
|
int ret;
|
2011-04-15 08:36:46 +00:00
|
|
|
FILE *in = stdin;
|
2011-08-04 11:14:59 +00:00
|
|
|
|
2011-08-04 14:22:38 +00:00
|
|
|
struct sd_callbacks callbacks;
|
2011-08-04 11:14:59 +00:00
|
|
|
struct html_renderopt options;
|
2011-09-01 03:02:26 +00:00
|
|
|
struct sd_markdown *markdown;
|
2011-08-04 11:14:59 +00:00
|
|
|
|
2011-04-15 08:36:46 +00:00
|
|
|
/* opening the file if given from the command line */
|
|
|
|
if (argc > 1) {
|
|
|
|
in = fopen(argv[1], "r");
|
|
|
|
if (!in) {
|
2011-05-16 04:23:05 +00:00
|
|
|
fprintf(stderr,"Unable to open input file \"%s\": %s\n", argv[1], strerror(errno));
|
2011-04-15 08:36:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* reading everything */
|
|
|
|
ib = bufnew(READ_UNIT);
|
|
|
|
bufgrow(ib, READ_UNIT);
|
|
|
|
while ((ret = fread(ib->data + ib->size, 1, ib->asize - ib->size, in)) > 0) {
|
|
|
|
ib->size += ret;
|
|
|
|
bufgrow(ib, ib->size + READ_UNIT);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in != stdin)
|
|
|
|
fclose(in);
|
|
|
|
|
|
|
|
/* performing markdown parsing */
|
|
|
|
ob = bufnew(OUTPUT_UNIT);
|
|
|
|
|
2011-08-04 14:22:38 +00:00
|
|
|
sdhtml_renderer(&callbacks, &options, 0);
|
2011-09-01 03:02:26 +00:00
|
|
|
markdown = sd_markdown_new(0, 16, &callbacks, &options);
|
|
|
|
|
2011-09-02 19:28:47 +00:00
|
|
|
sd_markdown_render(ob, ib->data, ib->size, markdown);
|
2011-09-01 03:02:26 +00:00
|
|
|
sd_markdown_free(markdown);
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
|
|
/* writing the result to stdout */
|
2011-07-19 19:55:07 +00:00
|
|
|
ret = fwrite(ob->data, 1, ob->size, stdout);
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
bufrelease(ib);
|
|
|
|
bufrelease(ob);
|
|
|
|
|
2011-07-19 19:55:07 +00:00
|
|
|
return (ret < 0) ? -1 : 0;
|
2011-04-15 08:36:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set filetype=c: */
|