| 70 | }; |
| 71 | |
| 72 | struct entry_style { |
| 73 | entry_style() : offset(0) { } |
| 74 | |
| 75 | entry_style(const entry_style& o) : offset(o.offset), spans(o.spans) { } |
| 76 | |
| 77 | size_t offset; |
| 78 | Vector<entry_style_span> spans; |
| 79 | }; |
| 80 | |
| 81 | /** |
| 82 | * If 'utf8' is true, strings will be encoded with UTF-8 instead of |