add new_text mode

This commit is contained in:
Nishi 2026-02-28 17:41:12 +09:00
commit 4ae511b917
Signed by: nishi
GPG key ID: 27EF69B208EB9343
3 changed files with 153 additions and 29 deletions

View file

@ -24,7 +24,8 @@ struct xl_driver {
enum XL_NODE_TYPE {
XL_NODE_COMMENT = 0,
XL_NODE_NODE,
XL_NODE_PROCESS
XL_NODE_PROCESS,
XL_NODE_TEXT
};
struct xl_attribute {
@ -54,6 +55,7 @@ struct xemil {
xl_driver_t* driver;
void* drv_opaque;
void* drv_arg;
int new_text;
xl_node_t* pre;
xl_node_t* root;
};