factorial-io / phabalicious

Supports your deployments and every-day devops-tasks
http://docs.phab.io
MIT License
18 stars 3 forks source link

docs: unwanted line breaks #287

Closed stmh closed 1 year ago

stmh commented 1 year ago

the markdown implementation treats linefeeds differently to the standard:

Phab 3.8 contains a new command named `find:property` which provides a visual prompt where the user can start typing the
name of a property they are interested in. Phab supports you by offering properties via autocomplete. As an alternative
you can hit enter to get a list of suggestions. After you found the property you are interested in, hit return, and phab
will display the actual value of that property, its ancestors and from where it got read.

gets rendered with line breaks after every source-line:

CleanShot 2022-09-24 at 16 06 29@2x

According to the markdown spec this shouldn't happen, if you want to add a line break, you need to add 2 spaces. (See also: https://gist.github.com/shaunlebron/746476e6e7a4d698b373)

Is this configurable per project? if so how?

mgrsskls commented 1 year ago

Ah, thanks for the hint! That was a simple internal setting which is not configurable though. PR: https://github.com/factorial-io/phabalicious/pull/288

stmh commented 1 year ago

thanks!