forked from fletcher/MultiMarkdown-4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlatex.h
More file actions
17 lines (13 loc) · 660 Bytes
/
latex.h
File metadata and controls
17 lines (13 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef LATEX_PARSER_H
#define LATEX_PARSER_H
#include "parser.h"
#include "writer.h"
void print_latex_node_tree(GString *out, node *list, scratch_pad *scratch);
void print_latex_node(GString *out, node *n, scratch_pad *scratch);
void print_latex_localized_typography(GString *out, int character, scratch_pad *scratch);
void print_latex_unescaped_string(GString *out, char *str, scratch_pad *scratch);
void print_latex_string(GString *out, char *str, scratch_pad *scratch);
void print_latex_url(GString *out, char *str, scratch_pad *scratch);
void print_latex_endnotes(GString *out, scratch_pad *scratch);
int find_latex_mode(int format, node *n);
#endif