summaryrefslogtreecommitdiff
path: root/groffdown.c
blob: 833836135c215bbd2b132c06a2dc35f1e1a08f48 (plain)
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
/*=============================================================================

  title: groffdown
  author: Benjamin Chausse
  last update: 2020-01-02

  Groffdown is meant as a translation layer between markdown and groff (or
  GNU/Troff if you are so inclined). Most solutions for generating formatted
  documents using groff often rely on software that is heavy on processing
  (such as LaTeX) thus making marking document compilation feel slow and
  innapropriate for live previewing. For more information about the project and
  it's usage please consult the man page. For more information about the
  project's copyright rules, please consult the LICENSE file contained in this
  repository.

  TODO: Write a manual

=============================================================================*/


#include <stdio.h>
#include <string.h>
#include "tree.h"

int main() {
  /* system("clear"); */
/* node *curr_node = &node_b; */
printf("Pattern: '%c'\n", root.pattern);
printf("End of test.");
return 0;
}