ImgConverter
截图:
简介:
ImgConverter 将 Markdown 符号的图像转换为 img 标签
## 概述
ImgConverter 是 chrome 扩展,可以在上传图片时将 markdown 表示法的表单图像转换为 img 标签(`<img>`)
详细信息请查看:https://github.com/funzin/ImgConverter 💁♂️
## 支持图片格式
- PNG (.png)
- JPEG (.jpg)
- GIF(.gif)
## 已确认的服务
- GitHub
- 欧空局
- 文档库
ETC。
## 用法
很简单。👨💻
1.上传图片到Github上发布或拉取请求或评论
2. 点击 ImgConverter 图标
3. **转换后的`<img>`!!**
## 选项
您可以在选项页面上设置“<img>”的宽度和高度的默认值。
1. 右键单击 ImgConverter 图标,然后点击“[选项]”
2. 显示选项页面
### 例子
#### 无输入
````
// 前
![标题](https://user-images.githubusercontent.com/test.png)
// 后
// 默认值为 `width=50%`
<img src=https://user-images.githubusercontent.com/test.png 宽度=50%>
````
#### 仅输入宽度
输入“宽度=200px”。
````
// 前
![标题](https://user-images.githubusercontent.com/test.png)
// 后
// 默认值为 `width=200px`
<img src=https://user-images.githubusercontent.com/test.png 宽度=200px>
````
#### 仅输入高度
输入“高度=200px”
````
// 前
![标题](https://user-images.githubusercontent.com/test.png)
// 后
// 默认值为 `height=200px`
<img src=https://user-images.githubusercontent.com/test.png height=200px>
````
#### 输入宽度和高度
输入`宽度=200px`,`高度=200px`
````
// 前
![标题](https://user-images.githubusercontent.com/test.png)
// 后
// 默认值为 `width=200px height=200px`
<img src=https://user-images.githubusercontent.com/test.png 宽度=200px 高度=200px>
````
## 接触
如果您发现问题或有意见,请通过[Github issues](https://github.com/funzin/ImgConverter/issues)告诉我💁♂️
## 作者
芬津,nakazawa.fumito@gmail.com
## 执照
ImgConverter 可在 MIT 许可证下使用。有关更多信息,请参阅[许可证文件](https://github.com/funzi/ImgConverter/blob/master/LICENSE.md)。