nightroman / FarNet

Far Manager framework for .NET modules and scripts in PowerShell, F#, JavaScript.
https://github.com/nightroman/FarNet/wiki
BSD 3-Clause "New" or "Revised" License
136 stars 19 forks source link

HelpDown: съедается пробел если строка в списке начинается с линка #58

Closed johnd0e closed 4 months ago

johnd0e commented 4 months ago
# Contents

a. text
   [link](https:\\)
@Contents
$ #Contents#

   1. §¦text~link~@https:\@

Ожидаемое поведение: пробел между text и link.

nightroman commented 4 months ago

Cannot reproduce, I have the space

.Language=English,English
.Options CtrlStartPosChar=§¦

@Contents
$ #Contents#

 a. text ~link~@https:\@
nightroman commented 4 months ago

The intermediate HTML

<h1 id="contents">Contents</h1>
<p>a. text <a href="https:\">link</a></p>
johnd0e commented 4 months ago

У вас почему-то не определился список.

nightroman commented 4 months ago

md

# Contents

- text
   [link](https:\\)

html

<h1 id="contents">Contents</h1>
<ul>
<li>text <a href="https:\">link</a></li>
</ul>

hlf

.Language=English,English
.Options CtrlStartPosChar=§¦

@Contents
$ #Contents#

   • §¦text ~link~@https:\@
johnd0e commented 4 months ago

pandoc --wrap=preserve

Intermediate html:

<h1 id="contents">Contents</h1>
<ul>
<li>text
<a href="https:\">link</a></li>
</ul>
nightroman commented 4 months ago

Проверьте v1.3.16, должно работать, но у меня это редкий юз-кейс, может, что пропустил.

johnd0e commented 4 months ago

Спасибо!