summaryrefslogtreecommitdiff
path: root/src/tags.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tags.h')
-rw-r--r--src/tags.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/tags.h b/src/tags.h
index 1b4b284..ef2cd03 100644
--- a/src/tags.h
+++ b/src/tags.h
@@ -39,6 +39,9 @@
#ifndef __TAGS_H__
#define __TAGS_H__
+static const char* kNSPrefix = "xmlns";
+
+// Tags used internally
static const char* kElDest = "i_dest";
static const char* kElBlock = "i_block";
static const char* kAtFix = "i_fix";
@@ -46,6 +49,7 @@ static const char* kAtCell = "i_cell";
static const char* kElListtable = "i_listtable";
static const char* kElListdef = "i_listdef";
+// All the main tags
static const char* kElPara = "para";
static const char* kElDoc = "document";
static const char* kElTab = "tab";
@@ -73,6 +77,7 @@ static const char* kElTable = "table";
static const char* kElFootNote = "footnote";
static const char* kElRef = "ref";
+// Attributes
static const char* kAtList = "list";
static const char* kAtName = "name";
static const char* kAtBold = "bold";
@@ -88,6 +93,7 @@ static const char* kAtId = "id";
static const char* kAtIndex = "id";
static const char* kAtTo = "to";
+// Values
static const wchar_t* kValDisc = L"disc";
static const wchar_t* kValLowerAlpha = L"lower-alpha";
static const wchar_t* kValUpperAlpha = L"upper-alpha";
@@ -96,11 +102,8 @@ static const wchar_t* kValUpperRoman = L"upper-roman";
static const wchar_t* kValArabic = L"arabic";
static const wchar_t* kValNull = L"";
static const wchar_t* kValFootNote = L"footnote";
-
static const wchar_t* kValList = L"list";
static const wchar_t* kValPara = L"para";
static const wchar_t* kValTable = L"table";
-static const char* kNSPrefix = "xmlns";
-
#endif // __TAGS_H__