diff options
author | Kenneth Lyons <ixjlyons@gmail.com> | 2015-10-05 01:10:01 -0700 |
---|---|---|
committer | Kenneth Lyons <ixjlyons@gmail.com> | 2015-12-04 10:27:18 -0800 |
commit | dcd0518e25d7aa84a720780cb70b3f8fca867972 (patch) | |
tree | be4adabae8ccab52113198b7b01b7a17fee0244c /src/output.c | |
parent | 876c1cef8d182ae1898368b415cf67dede279036 (diff) |
Added support for Pango markup.
Diffstat (limited to 'src/output.c')
-rw-r--r-- | src/output.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/output.c b/src/output.c index f7a8888..1c8c415 100644 --- a/src/output.c +++ b/src/output.c @@ -78,3 +78,46 @@ void print_separator(const char *separator) { void reset_cursor(void) { printf("\033[?25h"); } + +/* + * Escapes ampersand, less-than, greater-than, single-quote, and double-quote + * characters with the corresponding Pango markup strings if markup is enabled. + * See the glib implementation: + * https://git.gnome.org/browse/glib/tree/glib/gmarkup.c?id=03db1f455b4265654e237d2ad55464b4113cba8a#n2142 + * + */ +void maybe_escape_markup(char *text, char **buffer) { + if (markup_format == M_NONE) { + *buffer += sprintf(*buffer, "%s", text); + return; + } + for (; *text != '\0'; text++) { + switch (*text) { + case '&': + *buffer += sprintf(*buffer, "%s", "&"); + break; + case '<': + *buffer += sprintf(*buffer, "%s", "<"); + break; + case '>': + *buffer += sprintf(*buffer, "%s", ">"); + break; + case '\'': + *buffer += sprintf(*buffer, "%s", "'"); + break; + case '"': + *buffer += sprintf(*buffer, "%s", """); + break; + default: + if ((0x1 <= *text && *text <= 0x8) || + (0xb <= *text && *text <= 0xc) || + (0xe <= *text && *text <= 0x1f) || + (0x7f <= *text && *text <= 0x84) || + (0x86 <= *text && *text <= 0x9f)) + *buffer += sprintf(*buffer, "&#x%x;", *text); + else + *(*buffer)++ = *text; + break; + } + } +} |