okapi-filter-markdown
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sf.okapi.filters</groupId>
<artifactId>okapi-filter-markdown</artifactId>
<version>1.41.0</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>net.sf.okapi.filters</groupId>
<artifactId>build-filters</artifactId>
<version>1.41.0</version>
</parent>
<artifactId>okapi-filter-markdown</artifactId>
<name>Okapi Filter for Markdown</name>
<dependencies>
<dependency>
<groupId>net.sf.okapi</groupId>
<artifactId>okapi-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.sf.okapi.filters</groupId>
<artifactId>okapi-filter-html</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.sf.okapi.filters</groupId>
<artifactId>okapi-filter-yaml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark</artifactId>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-tables</artifactId>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-yaml-front-matter</artifactId>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-gfm-strikethrough</artifactId>
</dependency>
<dependency>
<groupId>net.sf.okapi</groupId>
<artifactId>okapi-core</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<!-- Copy filter configuration files to the target directory.
These will be picked up by /deployment/maven/build_okapi-lib.xml
later to be placed in the binary package.
-->
<id>copy-sample-files</id>
<goals>
<goal>copy-resources</goal>
</goals>
<phase>process-resources</phase>
<configuration>
<outputDirectory>${basedir}/target/examples</outputDirectory>
<resources>
<resource>
<!-- Copy the markdown filter configuration template file. -->
<directory>src/main/examples</directory>
<include>*.fprm</include>
<filtering>false</filtering>
</resource>
<resource>
<!-- Copy the HTML subfilter configruation file that Markdown filter actually uses by default. -->
<directory>src/main/resources/net/sf/okapi/filters/markdown</directory>
<include>*.fprm</include>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>