From 3bc7d8d894fc6c50636dfb9f3c04e72cce02cb28 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Sun, 3 Jan 2021 02:07:50 -0500 Subject: Moving developpement to a C implementation --- groffdown.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 groffdown.c (limited to 'groffdown.c') diff --git a/groffdown.c b/groffdown.c new file mode 100644 index 0000000..8338361 --- /dev/null +++ b/groffdown.c @@ -0,0 +1,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 +#include +#include "tree.h" + +int main() { + /* system("clear"); */ +/* node *curr_node = &node_b; */ +printf("Pattern: '%c'\n", root.pattern); +printf("End of test."); +return 0; +} + -- cgit v1.2.3