1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# test with a lihata doc in which the root is a li
load_doc D1 table_corners.lht
# N1 is a non-empty, N2 is an empty table
root N1 D1
path N1 /1
root N2 D1
path N2 /0
echo --- Original table:
print_tree N1
equ_node N3 N1
table_cell N3 0 0
new_text N4 for_replacing
table_replace_child N1 N3 N4
echo --- After replacing (0, 0) cell:
print_tree N1
equ_node N3 N1
table_cell N3 2 1
new_text N4 for_replacing
table_replace_child N1 N3 N4
echo --- After replacing (2, 1) cell:
print_tree N1
equ_node N3 N1
table_cell N3 3 1
new_text N4 for_replacing
table_replace_child N1 N3 N4
echo ---After replacing (3, 1) cell:
print_tree N1
free_doc D1
|