1 Star 0 Fork 0

onemore/vscode-markdown-paste-image

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
paste_win.ps1 372 Bytes
一键复制 编辑 原始数据 按行查看 历史
tanbunko 提交于 2017-10-11 05:43 +08:00 . Convert HTML content to markdown while pasing HTML
Add-Type -Assembly PresentationCore
$content = ""
if ([Windows.Clipboard]::ContainsData("HTML Format")) {
$content = [Windows.Clipboard]::GetData("HTML Format")
} elseif([Windows.Clipboard]::ContainsData("Text")) {
$content = [Windows.Clipboard]::GetData("Text")
}
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8
[Console]::WriteLine($content)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/treert/vscode-markdown-paste-image.git
git@gitee.com:treert/vscode-markdown-paste-image.git
treert
vscode-markdown-paste-image
vscode-markdown-paste-image
master

搜索帮助