Skip to content

Commit 436042e

Browse files
committed
🔧 update configure
1 parent 9ce9f02 commit 436042e

File tree

5 files changed

+1450
-1
lines changed

5 files changed

+1450
-1
lines changed

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
__pycache__/
2-
.DS_Store
2+
.DS_Store
3+
.python-version

‎.pre-commit-config.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
repos:
4+
- repo: https://github.com/pre-commit/pre-commit-hooks
5+
rev: v5.0.0
6+
hooks:
7+
- id: trailing-whitespace
8+
- id: end-of-file-fixer
9+
- id: check-yaml
10+
- id: check-added-large-files
11+
- repo: https://github.com/psf/black
12+
rev: 24.10.0
13+
hooks:
14+
- id: black

‎README.md

+11
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,14 @@ python mdconverter.py --filename <notebook-file-path>
1212
python mdconverter.py --filename sample/05-GoogleGenerativeAI.ipynb
1313
```
1414

15+
개발 중...
16+
```python
17+
18+
from mdconverter.mdconverter_class import Mdconverter
19+
app = Mdconverter()
20+
app.filename = "sample/05-GoogleGenerativeAI.ipynb"
21+
app.output_filename = 'sample/New-05-GoogleGenerativeAI.md'
22+
app.css_filename = "css/styles.css"
23+
24+
app.run()
25+
```

0 commit comments

Comments
 (0)