swing-markdown-preview
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.raghul-tech</groupId> <artifactId>swing-markdown-preview</artifactId> <version>1.0.0</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.raghul-tech</groupId> <artifactId>swing-markdown-preview-parent</artifactId> <version>1.0.0</version> </parent> <artifactId>swing-markdown-preview</artifactId> <name>Swing Markdown Preview</name> <description> Swing Markdown Preview (Minimal) is a lightweight Java library for rendering Markdown content in Swing applications. This version does not include Flexmark dependencies, allowing developers to control which Markdown parser version to use. Perfect for projects that need a modular, customizable Markdown renderer for Java Swing. </description> <dependencies> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-all</artifactId> <version>0.64.8</version> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <!-- Sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> <!-- Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> </plugins> </build> </project>