Vladimir Schneider
posted to
vsch/flexmark-java
Correct Usage of ExtensionJira renderer extension is an extension to the HTML Renderer. As such it requires AST generated from Markdown not HTML. It is intended to be used for rendering Markdown to JIRA not HTML to JIRA. Depending on the complexity of HTML you may be able to conv... |
Vladimir Schneider
posted to
vsch/flexmark-java
integrate YUML and websequence diagram with flexmarkForgot to give you a link to the code in question: CoreNodeRenderer.java: Line 666 |
Vladimir Schneider
posted to
vsch/flexmark-java
integrate YUML and websequence diagram with flexmarkYou need to create a custom HTML renderer to convert the You can take a look at the CoreNodeRenderer.java in core flexmark module for an example of rendering multi-line text as URL. The multi-line UR... |
Vladimir Schneider
posted to
vsch/flexmark-java
integrate YUML and websequence diagram with flexmarkThe syntax is close to the GitLab block quotes which use You only need the code for the yUML block element (equivalent to G... |
Vladimir Schneider
posted to
vsch/flexmark-java
integrate YUML and websequence diagram with flexmarkHow would YUML diagrams be created in markdown? In my plugin I use fenced code with info set to to render PlantUML diagrams. I do this by creating a custom renderer for fenced code that converts ones with info to image links to images created with P... |
Vladimir Schneider
posted to
GitQLab/gitq.com
GitHub issue completions do not work@steveluo, accepted. I will do PRs so you can review. Don't worry about the refactoring before release. You would be surprised how much input users provide and help you get the project moving faster. I would not have half the features in flexmark-java... |
Vladimir Schneider
posted to
GitQLab/gitq.com
GitHub issue completions do not workWould it be possible to add completions for issues when using #? GitHub does have the API to get issues. Is GitQ source code available? I could take a look if I can start being useful and add a feature. It is half of the GitHub integration which I think... |
Vladimir Schneider
added topic to
GitQLab/gitq.com
GitHub issue completions do not workI suspect there was a change in GitHub API for issues because typing |
Vladimir Schneider
added topic to
vsch/idea-multimarkdown
Welcome to Markdown Navigator DiscussionsWelcome to the discussion forum for Markdown Navigator features, enhancements and development roadmap. Add your suggestions and ideas for the forum to this topic.
|
Vladimir Schneider
watched community
|
Vladimir Schneider
created community
|
Vladimir Schneider
posted to
vsch/flexmark-java
Where is the JavaDoc?@coreagile, forgot about this topic. Java docs are now on https://www.javadoc.io/doc/com.vladsch.flexmark/flexmark |
Vladimir Schneider
posted to
vsch/flexmark-java
Hooks into wikilinks extension rendering?You should not use relative links for your href. The About page is really at not . When you create the relative link for a page at the browser sees it as located in so any relative links in that page will be relative to the page directory. Hence you s... |
Vladimir Schneider
posted to
vsch/flexmark-java
Hooks into wikilinks extension rendering?@clartaq, the rendering of the WikiLink will use whatever value is defined by the resolver for the url attribute:
|
Vladimir Schneider
posted to
vsch/flexmark-java
Where is the JavaDoc?@coreagile, I have this on the todo list, including marked the task help wanted. I don't know how to set it up with maven build and cannot afford the time to search for the information at the moment. If you know where I can find information specific to t... |
Vladimir Schneider
posted to
vsch/flexmark-java
Hooks into wikilinks extension rendering?You definitely should use the Wiki link extension for parsing wiki links and optionally wiki images To complete the functionality you need to create a custom |
Vladimir Schneider
posted to
vsch/flexmark-java
Use flexmark-java to generate documents and reports based on templatesI am not familiar with Docmosis but don't see why markdown generated from a template would make any difference to the parser or the renderers. Once you have a Markdown source, no matter how you derived it, you can parse it to an AST and then render ... |
Vladimir Schneider
posted to
vsch/flexmark-java
Prepend image links with custom URLflexmark-java-samples/src/com/vladsch/flexmark/samples/CustomLinkResolverSample.java @master
|
Vladimir Schneider
posted to
vsch/flexmark-java
Prepend image links with custom URL @Frituurpanda, the best example for this is in the new module |
Vladimir Schneider
posted to
vsch/flexmark-java
Set content of html blocks @eikek, yes the cause is the same. You can get around it for now by setting the The fix will not require blank lin... |
Vladimir Schneider
posted to
vsch/flexmark-java
Replace all link targets in markdown astYou are welcome. Your use case was not addressed by the library and was a good reason for some cleanup. |
Vladimir Schneider
posted to
vsch/flexmark-java
Replace all link targets in markdown ast@eikek, repo updated, maven update in progress. Sample for changing URLs and output using formatter: FormatterWithMods.java |
Vladimir Schneider
posted to
vsch/flexmark-java
Replace all link targets in markdown ast@eikek, it is a bit convoluted because each node keeps track of the source position and each node text part. I am making a new release that cleaned up the link related nodes to make your use case implementation easier. The new release is coming shortly w... |
Vladimir Schneider
posted to
vsch/flexmark-java
Specify css when converting to pdf@mkanada, since the PDF converter takes HTML you can add the CSS to the HTML before passing it to the exportToPdf method by wrapping the rendered HTML in
|