Revert "Move the Block helper type to its own file"

This fixes the broken tests

This reverts commit 286ae68fd6.
This commit is contained in:
William Casarin
2023-08-25 19:03:19 -07:00
parent 7255481705
commit f30f93f65c
9 changed files with 230 additions and 245 deletions

View File

@@ -27,7 +27,7 @@ func parsed_blocks_finish(bs: inout note_blocks, tags: TagsSequence?) -> Blocks
while (i < bs.num_blocks) {
let block = bs.blocks[i]
if let converted = Block(block, tags: tags) {
if let converted = convert_block(block, tags: tags) {
out.append(converted)
}