Mario Valle

Results 118 comments of Mario Valle
trafficstars

As requested, here is the log file from the extension. I don't understand why it is activated when the files are not markdown. [shd101wyy.markdown-preview-enhanced-unresponsive.cpuprofile.txt.zip](https://github.com/shd101wyy/vscode-markdown-preview-enhanced/files/3972389/shd101wyy.markdown-preview-enhanced-unresponsive.cpuprofile.txt.zip)

Here is mine most recent one: [shd101wyy.markdown-preview-enhanced-unresponsive.cpuprofile.txt](https://github.com/shd101wyy/vscode-markdown-preview-enhanced/files/4490971/shd101wyy.markdown-preview-enhanced-unresponsive.cpuprofile.txt) Markdown preview extension version 0.5.3 inside VS code Version: 1.44.1 (user setup) Commit: a9f8623ec050e5f0b44cc8ce8204a1455884749f Date: 2020-04-11T01:48:12.622Z Electron: 7.1.11 Chrome: 78.0.3904.130 Node.js: 12.8.1 V8:...

Rendering is jagged. I mentioned slanted because the problem happens if you take a regular font and skew it. Also the effect is much less visible in titles (bigger font...

Similarly I have YAML metadata block at the beginning of every markdown file so pandoc could generate correct title/author/etc. for the converted file. Normally they start with `---` at the...

Forgot. WM renders the comment `` approximately as: `←!—— text —→`

Thanks Gordon! With your example I was able to make a step more. My application uses AMD and RequireJS for loading modules. So I exchanged the `/// ` line with...

Dagre is in good company: jquery. Instead knockout has no such problem: ``` import * as ko from "knockout"; import * as $ from "jquery"; ``` I suspect error TS2307...

The typescript compiler is producing AMD modules, so your import statement is compiled to a `define(["require", "exports", "@svgdotjs/svg.js"], ...` so I'm back to square one. At the end I'm using...

No, I'm not offended. Sorry if I give this impression. Is that I'm trying to recover my application from a monumental misunderstanding, that is, I was adding AMD modules by...

@tmirun My solution is not pretty, but at least solved the problem. 1) In the source I import SVG.js this way: ``` // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-expect-error import SVG from...