I have the following code to show a modulo 2 binary division:
$std.grid(
inset: #3pt,
columns: #19,
, , , , , , , , , 1, 1, 0, 1, 0, 0, 0, 0, 0,
#grid.hline(start: 5),
, 1, 1, 0, 0, 1,
#grid.vline(start: 1, end: 2),
1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0,
, , , , , xor, 1, 1, 0, 0, 1, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b,
#grid.hline(start: 5, end: 10),
, , , , , , 0, 1, 1, 1, 1, 1, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b,
, , , , , , xor, 1, 1, 0, 0, 1, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b,
#grid.hline(start: 6, end: 11),
, , , , , , , 0, 0, 1, 1, 0, 0, 1, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b,
, , , , , , , , xor, 1, 1, 0, 0, 1, arrow.b, arrow.b, arrow.b, arrow.b, arrow.b,
#grid.hline(start: 8, end: 13),
, , , , , , , , , 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
)$
I want to know if it is possible to show a vertical line inside each cell to make it look better when showing that a number is being pulled down. Currently, this is what it looks like when rendered:

