dangsn
2023-08-24 260d5e5294da879f7fcf7f93e7379f8b990a0ce7
1
2
3
4
5
6
7
function xlml_set_prop(Props, tag, val) {
    /* TODO: Normalize the properties */
    switch(tag) {
        case 'Description': tag = 'Comments'; break;
    }
    Props[tag] = val;
}