Works fine under Windows XP with https://www.dropbox.com/s/gyx3rzsp8bryucl/README.md?dl=1

Moderators: Hacker, petermad, Stefan2, white
Code: Select all
Could you explain it more detaily, please?
What bug do you mean?
What toolset/compiler have you used and what compiler switches have you changed/added?
Code: Select all
/Zc:threadSafeInit-
As of your comments on functionality -- yes, duly noted. I can't promise any quick fixes soon, since most of them actually caused with the fact that there is no html document to be loaded into the HTMLView window, which breaks some functionality, and there is no easy way to fix it.Thread-safe static local variables use thread-local storage (TLS) internally to provide efficient execution when the static has already been initialized. The implementation of this feature relies on Windows operating system support functions in Windows Vista and later operating systems. Windows XP, Windows Server 2003, and older operating systems do not have this support, so they do not get the efficiency advantage. These operating systems also have a lower limit on the number of TLS sections that can be loaded. Exceeding the TLS section limit can cause a crash. If this is a problem in your code, especially in code that must run on older operating systems, use /Zc:threadSafeInit- to disable the thread-safe initialization code.
Thanks a lot for your explanations and for your great work.rg_software wrote: 2018-12-27, 20:36 UTC In a nutshell,compiler option is needed.Code: Select all
/Zc:threadSafeInit-
in code that must run on older operating systems, use /Zc:threadSafeInit- to disable the thread-safe initialization code.
I think you should create html file in the directory of the source md file, if possible. That way linking and navigation inside large documents will work OK - to me it's a key feature of markdown format and its support is a must.rg_software wrote: 2018-12-27, 20:36 UTC I tried to save a temp file on the disk and show it, but this solution has other disadvantages. So I go with in-memory processing.
Well, markdown files by default are in UTF-8, so it's not the case…rg_software wrote: 2018-12-27, 20:36 UTC (for example, you cannot change character encoding if it was guessed incorrectly).
Code: Select all
# Title
- [Title](#title)
- [Section 1](#section-1)
- [Subsection 1.1](#subsection-11)
- [Section 2](#section-2)
## Section 1
### Subsection 1.1
## Section 2
Windows Explorer?
I was actually looking for a simple markdown plugin to preview markdown files (*.md) in lister and found that GIT link above in this thread:
Thank you! It is available in the Unofficial database. I have no idea how plugins end up on the official TC website!maenkaind wrote: 2024-10-07, 15:08 UTC Is there any good reason why this nice plugin couldn't be downloaded in the lister plugins but from an external source only?