Skip to content

Commit

Permalink
fix: constructor in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwamizamurai committed Mar 6, 2023
1 parent 1802000 commit 03e42c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ notion2md --download -n post -p ~/MyBlog/content/posts -u https://notion.so/...
from notion2md.exporter.block import MarkdownExporter, StringExporter

# MarkdownExporter will make markdown file on your output path
MarkdownExporter(page_id='...',output_path='...',download=True).export()
MarkdownExporter(block_id='...',output_path='...',download=True).export()

# StringExporter will return output as String type
md = StringExporter(page_id='...',output_path='...').export()
md = StringExporter(block_id='...',output_path='...').export()
```

## To-do
Expand Down

0 comments on commit 03e42c4

Please sign in to comment.