https://github.com/sailist/easy_proxy
an proxy pool which can easily used
https://github.com/sailist/easy_proxy
Last synced: 2 months ago
JSON representation
an proxy pool which can easily used
- Host: GitHub
- URL: https://github.com/sailist/easy_proxy
- Owner: sailist
- Created: 2019-03-15T16:53:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-16T03:30:20.000Z (about 6 years ago)
- Last Synced: 2024-12-29T10:30:07.505Z (4 months ago)
- Language: Python
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# md2latex
- mdConverter now can convert text with markdown format to latex code, support quote ">",item "-" ,enum "1.",Table |||, splitline --- ,and mixing scene.
- use ctexart documentclass,support chinese language
- imageurl can both from local and web, mdConverter will download and rename(with abspath) and reformat it.What is lacking now is not beautiful enough. In the next version,I will add more function and beautify it.
## dependency
```
pylatex
matplotlib
urllib
```## how2use
```python
from mdconverter.example import fullExample
from mdconverter import excudoc = excu(fullExample.full)# type:str
print(doc)
```## example
Full example is given in the file ./example/fullExample.py```markdown
@[TOC]
# first title 大标题
## second title 二标题
### third title 三标题
#### forth title 四标题
##### fifth title 五标题```
toLatex:
```markdown
|||||
|-|-|-|-|
|in table |**bold 加粗**|`行内代码 inline code`|$inline fomular$|```
> fomular is not support now.
toLatex:
```markdown
1. enum型 **item**
2. enum型 `item`
3. enum型 *item*
4. enum型 item- item型 **item**
- item型 `item`
- item型 item```
toLatex:
```markdown
```c++
#include
int main(){
return 0;
}```
> code language is only support c++ style,and is ugly.toLatex:
```markdown


```toLatex:
```markdown
> 1. enum型
> 2. enum型
>> - item 型
>> - item 型
> [示例链接](https://github.com/sailist/md2latex)>
>
```toLatex:

