Skip to content

Commit

Permalink
Merge pull request #49 from kiwamizamurai/develop
Browse files Browse the repository at this point in the history
fix: constructor in README.md
  • Loading branch information
echo724 authored Jun 29, 2023
2 parents 1802000 + 03e42c4 commit 29f3eed
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 29f3eed

Please sign in to comment.