Vladimir Schneider

vsch ·

GitQLab/gitq.com

GitHub issue completions do not work

bug

I suspect there was a change in GitHub API for issues because typing # does not show a list of project issues and if the issue number is added manually it does not render as a link to the issue.

vsch/idea-multimarkdown

Welcome to Markdown Navigator Discussions

announcement

Welcome to the discussion forum for Markdown Navigator features, enhancements and development roadmap.

Add your suggestions and ideas for the forum to this topic.

  • features or enhancement of existing features start a topic with "enhancement" ...

vsch/flexmark-java

Specify css when converting to pdf

question

GitHub Issue 98

How can I specify a custom css file to be used in a pdf conversion?

vsch/flexmark-java

Find document modified region

question

GitHub Issue 114

I’m trying to implement md syntax color in Eclipse, and I need to identify a damaged region, meaning the smallest possible region that was affected by user modificationThe idea is to parse only this region, and then to color only its text...

vsch/flexmark-java

how to add attribute for the <a>

pegdown migration

GitHub Issue 103

My Project has used the to transfer markdown text to html text.In the PegDown ,I use a custom class extends and override the methods to achieve the aim to add some attribute for different links(likes image link common link);So how can ...

vsch/flexmark-java

Can I use flexmark to turn a Markdown string into a List of Texts for use in a JavaFX TextFlow?

question

GitHub Issue 116

Basically, I want to have an original text style

Text original = new Text();
original.setFont(...);
original.setSize(...);

Have an input markdown string

String md = "So _this_ is italic and **this** is bold";

Is there a way to get a L...

vsch/flexmark-java

pegdown markdownToHtml and LinkRenderer class replacement in flexmark java

pegdown migration

GitHub Issue: 105

Hi,
I am looking for the replacement for the following logic in flexmark java, can you please suggest?

PegDownProcessor pegDownProcessor = new PegDownProcessor(Extensions.ALL - (headerLinks ? 0 : Extensions.ANCHORLINKS)- (ha...