okapi-filter-markdown
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.okapi.filters</groupId> <artifactId>okapi-filter-markdown</artifactId> <version>0.37</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>build-filters</artifactId> <groupId>net.sf.okapi.filters</groupId> <version>0.37</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> <scope>test</scope> <type>test-jar</type> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <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> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <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>