Markdown.Avalonia
Markdown.Avalonia copied to clipboard
usage experience
Question 1:
when I use ">" to perform a break line, it not work. if I add a blank line between ">" lines, it looks ugly.
Question 2:
if it is needed to support padding when I use a “to show codes” under a list item? otherwise, it looks ugly, too! when I use "code " under a list item, it also blocks the number to be auto increment as what shows in the following picture.

About Q1
This is match to specifications.
If you insert empty line between ">" lines. Each separated ">" lines are displayed in each different paragraphs.
If you want to change the paragraph in blockquote. You should precode empty line with '>'.
ugly sample
> one
> two
one
two
correct sample
> one
>
> tww
one
tww
About Q1
This is match to specifications.
If you insert empty line between ">" lines. Each separated ">" lines are displayed in each different paragraphs.
If you want to change the paragraph in blockquote. You should precode empty line with '>'.
ugly sample
> one > twoone
two
correct sample
> one > > twwone tww
I want a new line instead of a blank line
If you want an ONE linebreak, you have to add 2 spaces to line tail.
> one
> two
one
two
If you want more than one linebreak, I think it should be solved by #30.
About Q1 This is match to specifications. If you insert empty line between ">" lines. Each separated ">" lines are displayed in each different paragraphs. If you want to change the paragraph in blockquote. You should precode empty line with '>'. ugly sample
> one > twoone
two
correct sample
> one > > twwone tww
I want a new line instead of a blank line
ok, how about question 2?
If you want an ONE linebreak, you have to add 2 spaces to line tail.
> one > twoone two
If you want more than one linebreak, I think it should be solved by #30.
it not satisfy me about padding at the head of a new line:

About Q2
It is bug that codeblock can not be included in list.
Not support starting ordered lists at an arbitrary number is not specification violation. But supporting is allowed, so I may support it.
If you want an ONE linebreak, you have to add 2 spaces to line tail.
> one > twoone two
If you want more than one linebreak, I think it should be solved by #30.
it not satisfy me about padding at the head of a new line:
Did you mean that you want treat '>' as codeblock? '>' is blockquote syntax for quottng a sentence, So duplication spaces is removed.
And If you indent a sentence, It is treated as codeblock. It's strange that it doesn't require a blank line before indentation, but it follows the spec approximately.
If you want an ONE linebreak, you have to add 2 spaces to line tail.
> one > twoone two
If you want more than one linebreak, I think it should be solved by #30.
it not satisfy me about padding at the head of a new line:
Did you mean that you want treat '>' as codeblock? '>' is blockquote syntax for quottng a sentence, So duplication spaces is removed.
And If you indent a sentence, It is treated as codeblock. It's strange that it doesn't require a blank line before indentation, but it follows the spec approximately.
I think it as the "```",isn't it?
Did you say about this translation?

In Markdown, code block is expressed two syntaxes.
-
surrounded by "```"
``` code ```code -
indentation
codecode
Did you say about this translation?
In Markdown, code block is expressed two syntaxes.
surrounded by "```"
code
codeindentation
codecode
what I want is just like this:
const(
A = A,
B = B
)
another question is : when I use "```" frequently,the parse result may be unexpected. It is a bug.
Maybe there needs a horizonal scroll bar when input more words in the direction of horizon. Now is hidden in the tag "```"
what I want is just like this:
const( A = A, B = B )
I think you should use codeblock. I will not remove indent-codeblock. And I think there is no way to cohabit indent-codeblock and more spaces in Markdown.
what I want is just like this:
const( A = A, B = B )I think you should use codeblock. I will not remove indent-codeblock. And I think there is no way to cohabit indent-codeblock and more spaces in Markdown.
So, fix the indent of code block first.
I released v0.10.1 and v0.9.1. This version allows us to put codeblock in list. And it has been confirmed to work with only one code block in the block quotes.

Note that an indented-codeblock syntax is changed. In previous version, indented-codeblock didn't require a blank line at the beginning, but this version dose. This behavior is not mentioned in original spec, but is implemented.
