flexmark-ext-tables
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-tables</artifactId> <version>0.64.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-java</artifactId> <version>0.64.8</version> </parent> <artifactId>flexmark-ext-tables</artifactId> <name>flexmark-java extension for tables</name> <description>flexmark-java extension for tables using "|" pipes with optional column spans and table caption</description> <dependencies> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-util</artifactId> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark</artifactId> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-test-util</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-typographic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-core-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>