吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2424|回复: 5
收起左侧

[Python 转载] 利用Python处理语雀导出md文件时图片链接异常问题

[复制链接]
xdd1997 发表于 2021-11-13 12:14

前言

pic
图片2是在语雀中的图片,导出后在Typora打开md文件,显示图片如图1所示,解决方法是删除黄色部分即可

代码功能

在语雀网页端导出的Markdown文件用Typora打开时无法显示图片,解决方法是删除图片地址中#clientId=后面的内容

代码如下

#!python3
# @Author: edit by ddx
# @Data: 2021-11-11
# 删除语雀导出.md文件中图片地址“#clientId=”后面的内容

import re
filename = r'C:\Users\614\Downloads\python判断excel两列数据关系.md'
content = []
with open(filename,encoding='utf-8') as f:
    lines = f.readlines()
    for line in lines:
        pattern = re.compile(r'#clientId=.*\)')
        phone = pattern.search(line)
        if phone != None:
            line = pattern.sub(')', line)
        content.append(line)
print(content)

filename_After = filename.split('.')[0] + '_After.md'
with open(filename_After,'w',encoding='utf-8') as fw:
    fw.writelines(content)

免费评分

参与人数 1热心值 +1 收起 理由
SC303 + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

SC303 发表于 2021-11-13 14:02
楼主这是什么原因呢
acmilan812 发表于 2021-11-13 14:23
hi52 发表于 2021-11-13 17:10
本帖最后由 hi52 于 2021-11-13 17:11 编辑

这是什么原因???我也在学
lsjhwei 发表于 2021-11-13 19:49
谢谢分享
kez 发表于 2021-11-15 01:58
谢谢分享,学习了。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-1-13 13:31

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表