A small library for a Obsidian Vaults to parse its content. One example is to prepare the content to publishing with static site generators, Hugo as an example.
pip install obsidian-parser
How to multiply one number by another with this lib:
# Import Multiplication from your library
from obsidian_parser import Multiplication
# Instantiate a Multiplication object
multiplication = Multiplication(2)
# Call the multiply method
print(multiplication.multiply(5))