Skip to content

Commit

Permalink
#36 links
Browse files Browse the repository at this point in the history
  • Loading branch information
Yegor Bugayenko committed Nov 4, 2014
1 parent 58db97f commit fadec1d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/site/apt/example-parsing.apt.vm
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# How to parse XML

The only class you need is
[`XMLDocument`](./apidocs-${project.version}/com/jcabi/xml/XMLDocument.html),
{{{./apidocs-${project.version}/com/jcabi/xml/XMLDocument.html}`XMLDocument`}},
which implements
[`XML`](./apidocs-${project.version}/com/jcabi/xml/XML.html)
{{{./apidocs-${project.version}/com/jcabi/xml/XML.html}`XML`}}
interface and works with your default DOM implementation:

```java
Expand Down
4 changes: 2 additions & 2 deletions src/site/apt/example-xsd.apt.vm
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# How to validate XML with XSD Schema

You need one class
[`XSDDocument`](./apidocs-${project.version}/com/jcabi/xml/XSDDocument.html)
{{{./apidocs-${project.version}/com/jcabi/xml/XSDDocument.html}`XSDDocument`}}
which implements
[`XSD`](./apidocs-${project.version}/com/jcabi/xml/XSD.html)
{{{./apidocs-${project.version}/com/jcabi/xml/XSD.html}`XSD`}}
interface. It works with your default DOM implementation.
For example:

Expand Down
8 changes: 4 additions & 4 deletions src/site/apt/example-xslt.apt.vm
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# How to apply XSL to XML

You need two classes:
[`XMLDocument`](./apidocs-${project.version}/com/jcabi/xml/XMLDocument.html)
and [`XSLDocument`](./apidocs-${project.version}/com/jcabi/xml/XSLDocument.html)
{{{./apidocs-${project.version}/com/jcabi/xml/XMLDocument.html}`XMLDocument`}}
and {{{./apidocs-${project.version}/com/jcabi/xml/XSLDocument.html}`XSLDocument`}}
which implement
[`XML`](./apidocs-${project.version}/com/jcabi/xml/XML.html)
and [`XSL`](./apidocs-${project.version}/com/jcabi/xml/XSL.html)
{{{./apidocs-${project.version}/com/jcabi/xml/XML.html}`XML`}}
and {{{./apidocs-${project.version}/com/jcabi/xml/XSL.html}`XSL`}}
interfaces respectfully. They work with your default DOM implementation.
For example:

Expand Down
4 changes: 2 additions & 2 deletions src/site/apt/index.apt.vm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# XML Parsing and Printing

Set of classes in
[`com.jcabi.xml`](./apidocs-${project.version}/com/jcabi/xml/index.html)
{{{./apidocs-${project.version}/com/jcabi/xml/index.html}`com.jcabi.xml`}}
is an extra layer on top of DOM that allows simple
parsing, printing, and transforming of XML documents and nodes:

Expand All @@ -20,7 +20,7 @@ public class Main {

The only dependency you need is
(you can also download
[`jcabi-xml-${project.version}.jar`](http://repo1.maven.org/maven2/com/jcabi/jcabi-xml/${project.version}/jcabi-xml-${project.version}.jar)
{{{http://repo1.maven.org/maven2/com/jcabi/jcabi-xml/${project.version}/jcabi-xml-${project.version}.jar}`jcabi-xml-${project.version}.jar`}}
and add it to the classpath):

```xml
Expand Down

0 comments on commit fadec1d

Please sign in to comment.