Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 544 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 544 Bytes

Obsidian Parser

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.

Installation

pip install obsidian-parser

Get started

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))