project: rename parse_mentions to parse_note_content

This is more accurate
This commit is contained in:
William Casarin
2023-07-16 10:49:31 -07:00
parent da78a217a3
commit 0c95071de7
9 changed files with 40 additions and 40 deletions

View File

@@ -39,7 +39,7 @@ struct AboutView: View {
}
}
.onAppear {
let blocks = parse_mentions(content: about, tags: [])
let blocks = parse_note_content(content: about, tags: [])
about_string = render_blocks(blocks: blocks, profiles: state.profiles).content.attributed
}