Description of problem
- When using the code shown below, a new tags property is created but the tags are not transferred from inline to frontmatter(not seen in the new Obsidian properties feature)
Obsidian note before usage of code

Obsidian note after usage of code

Code used
from pathlib import Path
from pyomd import Notes, Note
from pyomd.metadata import MetadataType
path_dir = Path("/path/to/directory/file")
note = Note(path_dir)
note.metadata.move(fr=MetadataType.INLINE, to=MetadataType.FRONTMATTER)
note.update_content(inline_inplace=False , inline_position="top" , inline_tml="standard") #type: ignore
note.write()
Extra Issue
- Certain inline properties are not converted to text properties when the text properties include links