summaryrefslogtreecommitdiff
path: root/src/texo.hpp
blob: b8ae3942b5e47dc290eaf3d59c441daeb79aaed2 (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
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
#ifndef TEXO_INCLUDED_TEXO
#define TEXO_INCLUDED_TEXO

#include <scrvar.hpp>


struct Texo {
    Texo(char c);
    char c;
};


/*
 * Texo Blocks
 */
struct TexoHeader {
    TexoHeader(int level);
    int level;  // Number >= 1, bigger for bigger.
};

struct TexoParagraph {};

struct TexoCode {};

struct TexoQuote {};


/*
 * Texo Decorators
 */
struct TexoMono {};

struct TexoBold {};

struct TexoItalic {};

struct TexoUnderline {};

struct TexoStrike {};


/*
 * Texo Signals
 */
struct TexoImage {
    ScriptVariable path;
    ScriptVariable title;
    ScriptVariable alt;
    ScriptVariable link;
};

struct TexoLink {
    ScriptVariable text;
    ScriptVariable link;
    ScriptVariable title;
};

struct TexoHorizontalRule {};


#endif