From 3047ed6100a56a529f26e43ada0a3fc3c3815c3e Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 8 Nov 2019 19:49:40 +0300 Subject: [texo] Full rewrite of inner representation. --- src/texo.hpp | 61 ------------------------------------------------------------ 1 file changed, 61 deletions(-) delete mode 100644 src/texo.hpp (limited to 'src/texo.hpp') diff --git a/src/texo.hpp b/src/texo.hpp deleted file mode 100644 index b8ae394..0000000 --- a/src/texo.hpp +++ /dev/null @@ -1,61 +0,0 @@ -#ifndef TEXO_INCLUDED_TEXO -#define TEXO_INCLUDED_TEXO - -#include - - -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 -- cgit v1.2.3