vnote
vnote copied to clipboard
从不同的浏览器上拷贝然后粘贴为makdown时出错
Describe the bug 粘贴为makdown时出错
To Reproduce Steps to reproduce the behavior:
- 我在safari上面复制了github上面的一段文字;
- 想在vnote(3.14.0)粘贴为markdown
- 无法完全粘贴全部内容
结果:
给个复现的原网页?
@tamlok from Here
First of all, you need to import
VizTracer
class from the packagefrom viztracer import VizTracer
You can trace code with
with
statementwith VizTracer(output_file="optional.json") as tracer: # Something happens here
Or you can create a
VizTracer
object and manually enable/disable the profile usingstart()
andstop()
function.tracer = VizTracer() tracer.start() # Something happens here tracer.stop() tracer.save() # also takes output_file as an optional argument