File tree Expand file tree Collapse file tree 5 files changed +1450
-1
lines changed Expand file tree Collapse file tree 5 files changed +1450
-1
lines changed Original file line number Diff line number Diff line change 1
1
__pycache__ /
2
- .DS_Store
2
+ .DS_Store
3
+ .python-version
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -12,3 +12,14 @@ python mdconverter.py --filename <notebook-file-path>
12
12
python mdconverter.py --filename sample/05-GoogleGenerativeAI.ipynb
13
13
```
14
14
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
+ ```
You can’t perform that action at this time.
0 commit comments