Sorin Marian Nasoi has proposed merging 
lp:~zorba-coders/zorba/xqdoc_fixes_data_cleaning into 
lp:zorba/data-cleaning-module.

Commit message:
XQDoc fixes.

Requested reviews:
  Sorin Marian Nasoi (sorin.marian.nasoi)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/xqdoc_fixes_data_cleaning/+merge/187904
-- 
https://code.launchpad.net/~zorba-coders/zorba/xqdoc_fixes_data_cleaning/+merge/187904
Your team Zorba Coders is subscribed to branch lp:zorba/data-cleaning-module.
=== modified file 'src/character-based-string-similarity.xq'
--- src/character-based-string-similarity.xq	2013-08-09 09:37:05 +0000
+++ src/character-based-string-similarity.xq	2013-09-26 20:27:53 +0000
@@ -40,9 +40,9 @@
  : of edits needed to transform one string into the other, with the allowable edit operations 
  : being insertion, deletion, or substitution of a single character.</p>
  : <p/>
- : <p>Example usage : <code>edit-distance("FLWOR", "FLOWER")</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">edit-distance("FLWOR", "FLOWER")</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>2</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">2</pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -67,9 +67,9 @@
  : the Jaro-Winkler value is, the more similar the strings are. The coefficient is 
  : normalized such that 0 equates to no similarity and 1 is an exact match.</p>
  : <p/>
- : <p>Example usage : <code>jaro("FLWOR Found.", "FLWOR Foundation")</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">jaro("FLWOR Found.", "FLWOR Foundation")</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>0.5853174603174603</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">0.5853174603174603</pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -98,9 +98,9 @@
  : <p>This similarity coefficient corresponds to an extension of the Jaro similarity coefficient that weights or
  : penalizes strings based on their similarity at the beginning of the string, up to a given prefix size.</p>
  : <p/>
- : <p>Example usage : <code>jaro-winkler("DWAYNE", "DUANE", 4, 0.1 )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">jaro-winkler("DWAYNE", "DUANE", 4, 0.1 )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>0.8577777777777778</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">0.8577777777777778</pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -123,9 +123,9 @@
  : variable cost adjustment to the cost of a gap (i.e., an insertion or deletion) in the 
  : distance metric.</p>
  : <p/>
- : <p>Example usage : <code>needleman-wunsch("KAK", "KQRK", 1, 1)</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">needleman-wunsch("KAK", "KQRK", 1, 1)</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>0</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">0</pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -148,9 +148,9 @@
 (:~
  : <p>Returns the Smith-Waterman distance between two strings.</p>
  : <p/>
- : <p>Example usage : <code>smith-waterman("ACACACTA", "AGCACACA", 2, 1)</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">smith-waterman("ACACACTA", "AGCACACA", 2, 1)</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>12</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">12</pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.

=== modified file 'src/consolidation.xq'
--- src/consolidation.xq	2013-08-09 09:37:05 +0000
+++ src/consolidation.xq	2013-09-26 20:27:53 +0000
@@ -41,9 +41,9 @@
  : <p>If more then one answer is possible, returns the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>most-frequent( ( "a", "a", "b") )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">most-frequent( ( "a", "a", "b") )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>("a")</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">("a")</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The most frequent node in the input sequence.
@@ -58,9 +58,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>least-frequent( ( "a", "a", "b") )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">least-frequent( ( "a", "a", "b") )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>("b")</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">("b")</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The least frequent node in the input sequence.
@@ -76,9 +76,9 @@
  : <p>If more then one answer is possible, return the first string according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>con:longest( ( "a", "aa", "aaa") )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">con:longest( ( "a", "aa", "aaa") )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>("aaa")</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">("aaa")</pre></p>
  :
  : @param $s A sequence of strings.
  : @return The longest string in the input sequence.
@@ -94,9 +94,9 @@
  : <p>If more then one answer is possible, return the first string according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>shortest( ( "a", "aa", "aaa") )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">shortest( ( "a", "aa", "aaa") )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>("a")</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">("a")</pre></p>
  :
  : @param $s A sequence of strings.
  : @return The shortest string in the input sequence.
@@ -112,9 +112,9 @@
  : <p>If more then one answer is possible, return the first string according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>most-tokens( ( "a b c", "a b", "a"), " +" )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">most-tokens( ( "a b c", "a b", "a"), " +" )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>("a b c")</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">("a b c")</pre></p>
  :
  : @param $s A sequence of strings.
  : @param $r A regular expression forming the delimiter character(s) which mark the boundaries between adjacent tokens.
@@ -131,9 +131,9 @@
  : <p>If more then one answer is possible, return the first string according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>least-tokens( ( "a b c", "a b", "a"), " +" )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">least-tokens( ( "a b c", "a b", "a"), " +" )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>("a")</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">("a")</pre></p>
  :
  : @param $s A sequence of strings.
  : @param $r A regular expression forming the delimiter character(s) which mark the boundaries between adjacent tokens.
@@ -149,9 +149,9 @@
  : <p>Returns the strings from an input sequence of strings that match a particular regular expression.</p>
  : <p/>
  : 
- : <p>Example usage : <code>matching( ( "a A b", "c AAA d", "e BB f"), "A+" )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">matching( ( "a A b", "c AAA d", "e BB f"), "A+" )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>( "a A b", "c AAA d")</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">( "a A b", "c AAA d")</pre></p>
  :
  : @param $s A sequence of strings.
  : @param $r The regular expression to be used in the matching.
@@ -168,9 +168,9 @@
  : <p>If more then one answer is possible, the function returns the first string according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>super-string( ( "aaa bbb ccc", "aaa bbb", "aaa ddd", "eee fff" ) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">super-string( ( "aaa bbb ccc", "aaa bbb", "aaa ddd", "eee fff" ) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>( "aaa bbb" )</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">( "aaa bbb" )</pre></p>
  :
  : @param $s A sequence of strings.
  : @return The string that appears more frequently as part of the other strings in the sequence.
@@ -193,9 +193,9 @@
  : input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>most-similar-edit-distance( ( "aaabbbccc", "aaabbb", "eeefff" ), "aaab" )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">most-similar-edit-distance( ( "aaabbbccc", "aaabbb", "eeefff" ), "aaab" )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>( "aaabbb" )</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">( "aaabbb" )</pre></p>
  :
  : @param $s A sequence of strings.
  : @param $m The string towards which we want to measure the edit distance.
@@ -213,9 +213,9 @@
  : value for the edit distance metric), return the first string according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>least-similar-edit-distance( ( "aaabbbccc", "aaabbb", "eeefff" ), "aaab" )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">least-similar-edit-distance( ( "aaabbbccc", "aaabbb", "eeefff" ), "aaab" )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>( "eeefff" )</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">( "eeefff" )</pre></p>
  :
  : @param $s A sequence of strings.
  : @param $m The string towards which we want to measure the edit distance.
@@ -233,9 +233,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>most-elements( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;a/&gt;, &lt;b/&gt;) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">most-elements( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;a/&gt;, &lt;b/&gt;) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>(&lt;a&gt;&lt;b/&gt;&lt;/a&gt;)</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">(&lt;a&gt;&lt;b/&gt;&lt;/a&gt;)</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the largest number of descending elements in the input sequence.
@@ -251,9 +251,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>most-attributes( ( &lt;a att1="a1" att2="a2"/&gt;, &lt;b att1="a1" /&gt;, &lt;c/&gt; ) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">most-attributes( ( &lt;a att1="a1" att2="a2"/&gt;, &lt;b att1="a1" /&gt;, &lt;c/&gt; ) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>(&lt;a att1="a1" att2="a2"/&gt;)</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">(&lt;a att1="a1" att2="a2"/&gt;)</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the largest number of descending attributes in the input sequence.
@@ -269,9 +269,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>most-nodes( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;a/&gt;, &lt;b/&gt;) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">most-nodes( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;a/&gt;, &lt;b/&gt;) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>(&lt;a&gt;&lt;b/&gt;&lt;/a&gt;)</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">(&lt;a&gt;&lt;b/&gt;&lt;/a&gt;)</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the largest number of descending nodes in the input sequence.
@@ -287,9 +287,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>least-elements( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;b&gt;&lt;c/&gt;&lt;/b&gt;, &lt;d/&gt;) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">least-elements( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;b&gt;&lt;c/&gt;&lt;/b&gt;, &lt;d/&gt;) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>(&lt;d/&gt;)</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">(&lt;d/&gt;)</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the smallest number of descending elements in the input sequence.
@@ -305,9 +305,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>                  
  : <p/>
  : 
- : <p>Example usage : <code>least-attributes( ( &lt;a att1="a1" att2="a2"/&gt;, &lt;b att1="a1" /&gt;, &lt;c/&gt; ) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">least-attributes( ( &lt;a att1="a1" att2="a2"/&gt;, &lt;b att1="a1" /&gt;, &lt;c/&gt; ) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>(&lt;c/&gt;)</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">(&lt;c/&gt;)</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the smallest number of descending attributes in the input sequence.
@@ -323,9 +323,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>least-nodes( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;b&gt;&lt;c/&gt;&lt;/b&gt;, &lt;d/&gt;) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">least-nodes( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;b&gt;&lt;c/&gt;&lt;/b&gt;, &lt;d/&gt;) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>(&lt;d/&gt;)</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">(&lt;d/&gt;)</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the smallest number of descending nodes in the input sequence.
@@ -341,9 +341,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>most-distinct-elements( ( &lt;a&gt;&lt;b/&gt;&lt;c/&gt;&lt;d/&gt;&lt;/a&gt;, &lt;a&gt;&lt;b/&gt;&lt;b/&gt;&lt;c/&gt;&lt;/a&gt;, &lt;a/&gt; ) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">most-distinct-elements( ( &lt;a&gt;&lt;b/&gt;&lt;c/&gt;&lt;d/&gt;&lt;/a&gt;, &lt;a&gt;&lt;b/&gt;&lt;b/&gt;&lt;c/&gt;&lt;/a&gt;, &lt;a/&gt; ) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>(&lt;a&gt;&lt;b/&gt;&lt;c/&gt;&lt;d/&gt;&lt;/a&gt;)</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">(&lt;a&gt;&lt;b/&gt;&lt;c/&gt;&lt;d/&gt;&lt;/a&gt;)</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the largest number of distinct descending elements in the input sequence.
@@ -359,9 +359,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>most-distinct-attributes( ( &lt;a att1="a1" att2="a2" att3="a3"/&gt;, &lt;a att1="a1" att2="a2"&gt;&lt;b att2="a2" /&gt;&lt;/a&gt;, &lt;c/&gt; ) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">most-distinct-attributes( ( &lt;a att1="a1" att2="a2" att3="a3"/&gt;, &lt;a att1="a1" att2="a2"&gt;&lt;b att2="a2" /&gt;&lt;/a&gt;, &lt;c/&gt; ) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>(&lt;a att1="a1" att2="a2" att3="a3"/&gt;)</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">(&lt;a att1="a1" att2="a2" att3="a3"/&gt;)</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the largest number of distinct descending attributes in the input sequence.
@@ -377,9 +377,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code>most-distinct-nodes( ( &lt;a>&lt;b/>&lt;/a&gt;, &lt;a>&lt;a/&gt;&lt;/a&gt;, &lt;b/&gt;) )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">most-distinct-nodes( ( &lt;a>&lt;b/>&lt;/a&gt;, &lt;a>&lt;a/&gt;&lt;/a&gt;, &lt;b/&gt;) )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>(&lt;a&gt;&lt;b/&gt;&lt;/a&gt;)</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">(&lt;a&gt;&lt;b/&gt;&lt;/a&gt;)</pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the largest number of distinct descending nodes in the input sequence.
@@ -395,9 +395,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code> least-distinct-elements( ( &lt;a>&lt;b/&gt;&lt;/a&gt;, &lt;b&gt;&lt;c/&gt;&lt;/b&gt;, &lt;d/&gt;) ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> least-distinct-elements( ( &lt;a>&lt;b/&gt;&lt;/a&gt;, &lt;b&gt;&lt;c/&gt;&lt;/b&gt;, &lt;d/&gt;) ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> (&lt;d/&gt;) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> (&lt;d/&gt;) </pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the smallest number of distinct descending elements in the input sequence.
@@ -413,9 +413,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code> least-distinct-attributes( ( &lt;a att1="a1" att2="a2"/&gt;, &lt;b att1="a1" /&gt;, &lt;c/&gt; ) ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> least-distinct-attributes( ( &lt;a att1="a1" att2="a2"/&gt;, &lt;b att1="a1" /&gt;, &lt;c/&gt; ) ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> (&lt;c/&gt;) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> (&lt;c/&gt;) </pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the smallest number of distinct descending attributes in the input sequence.
@@ -431,9 +431,9 @@
  : <p>If more then one answer is possible, return the first node according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code> least-distinct-nodes( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;b&gt;&lt;c/&gt;&lt;/b&gt;, &lt;d/&gt;) ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> least-distinct-nodes( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;b&gt;&lt;c/&gt;&lt;/b&gt;, &lt;d/&gt;) ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> (&lt;d/&gt;) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> (&lt;d/&gt;) </pre></p>
  :
  : @param $s A sequence of nodes.
  : @return The node having the smallest number of distinct descending nodes in the input sequence.
@@ -448,9 +448,9 @@
  : produce a non-empty set of nodes in all the cases.</p>
  : <p/>
  : 
- : <p>Example usage : <code> all-xpaths( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;c&gt;&lt;d/&gt;&lt;/c&gt;, &lt;d/&gt;), (".//b") ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> all-xpaths( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;c&gt;&lt;d/&gt;&lt;/c&gt;, &lt;d/&gt;), (".//b") ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> (&lt;a&gt;&lt;b/&gt;&lt;/a&gt;) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> (&lt;a&gt;&lt;b/&gt;&lt;/a&gt;) </pre></p>
  :
  : @param $s A sequence of elements.
  : @param $paths A sequence of strings denoting XPath expressions.
@@ -474,9 +474,9 @@
  : produce a non-empty set of nodes for some of the cases.</p>
  : <p/>
  : 
- : <p>Example usage : <code> some-xpaths( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;d&gt;&lt;c/&gt;&lt;/d&gt;, &lt;d/&gt;), (".//b", ".//c") ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> some-xpaths( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;d&gt;&lt;c/&gt;&lt;/d&gt;, &lt;d/&gt;), (".//b", ".//c") ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt; , &lt;d&gt;&lt;c/&gt;&lt;/d&gt; ) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt; , &lt;d&gt;&lt;c/&gt;&lt;/d&gt; ) </pre></p>
  :
  : @param $s A sequence of elements.
  : @param $paths A sequence of strings denoting XPath expressions.
@@ -502,9 +502,9 @@
  : <p>If more then one answer is possible, return the first element according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code> most-xpaths( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;d&gt;&lt;c/&gt;&lt;b/&gt;&lt;/d&gt;, &lt;d/&gt;) , (".//b", ".//c") ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> most-xpaths( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;d&gt;&lt;c/&gt;&lt;b/&gt;&lt;/d&gt;, &lt;d/&gt;) , (".//b", ".//c") ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> ( &lt;d&gt;&lt;c/&gt;&lt;b/&gt;&lt;/d&gt; ) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> ( &lt;d&gt;&lt;c/&gt;&lt;b/&gt;&lt;/d&gt; ) </pre></p>
  :
  : @param $s A sequence of elements.
  : @param $paths A sequence of strings denoting XPath expressions.
@@ -533,9 +533,9 @@
  : <p>If more then one answer is possible, return the first element according to the order of the input sequence.</p>
  : <p/>
  : 
- : <p>Example usage : <code> least-xpaths( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;d&gt;&lt;c/&gt;&lt;b/&gt;&lt;/d&gt;, &lt;d/&gt;) , (".//b", ".//c") ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> least-xpaths( ( &lt;a&gt;&lt;b/&gt;&lt;/a&gt;, &lt;d&gt;&lt;c/&gt;&lt;b/&gt;&lt;/d&gt;, &lt;d/&gt;) , (".//b", ".//c") ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> ( $lt;d/&gt; ) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> ( $lt;d/&gt; ) </pre></p>
  :
  : @param $s A sequence of elements.
  : @param $paths A sequence of strings denoting XPath expressions.
@@ -562,9 +562,9 @@
  : <p>Returns the nodes from an input sequence of nodes that validate against a given XML Schema.</p>
  : <p/>
  : 
- : <p>Example usage : <code> validating-schema ( ( &lt;a/&gt; , &lt;b/&gt; ), &lt;xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt;&lt;xs:element name="a" /&gt;&lt;/xs:schema&gt; ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> validating-schema ( ( &lt;a/&gt; , &lt;b/&gt; ), &lt;xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt;&lt;xs:element name="a" /&gt;&lt;/xs:schema&gt; ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> ( &lt;a/&gt; ) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> ( &lt;a/&gt; ) </pre></p>
  :
  : @param $s A sequence of elements.
  : @param $schema An element encoding an XML Schema.

=== modified file 'src/hybrid-string-similarity.xq'
--- src/hybrid-string-similarity.xq	2013-08-09 09:37:05 +0000
+++ src/hybrid-string-similarity.xq	2013-09-26 20:27:53 +0000
@@ -51,9 +51,9 @@
  : this function returns the cosine similarity coefficient between sets of Soundex keys.</p>
  : <p/>
  : 
- : <p>Example usage : <code> soft-cosine-tokens-soundex("ALEKSANDER SMITH", "ALEXANDER SMYTH", " +") </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> soft-cosine-tokens-soundex("ALEKSANDER SMITH", "ALEXANDER SMYTH", " +") </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 1.0 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 1.0 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -75,9 +75,9 @@
  : this function returns the cosine similarity coefficient between sets of Metaphone keys.</p>
  : <p/>
  : 
- : <p>Example usage : <code> soft-cosine-tokens-metaphone("ALEKSANDER SMITH", "ALEXANDER SMYTH", " +" ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> soft-cosine-tokens-metaphone("ALEKSANDER SMITH", "ALEXANDER SMYTH", " +" ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 1.0 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 1.0 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -99,9 +99,9 @@
  : bellow a given threshold are considered as matching tokens.</p>
  : <p/>
  : 
- : <p>Example usage : <code> soft-cosine-tokens-edit-distance("The FLWOR Foundation", "FLWOR Found.", " +", 0 ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> soft-cosine-tokens-edit-distance("The FLWOR Foundation", "FLWOR Found.", " +", 0 ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.408248290463863 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.408248290463863 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -135,9 +135,9 @@
  : a given threshold are considered as matching tokens.</p>
  : <p/>
  : 
- : <p>Example usage : <code> soft-cosine-tokens-jaro("The FLWOR Foundation", "FLWOR Found.", " +", 1 ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> soft-cosine-tokens-jaro("The FLWOR Foundation", "FLWOR Found.", " +", 1 ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.5 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.5 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -169,9 +169,9 @@
  : similarity above a given threshold are considered as matching tokens.</p>
  : <p/>
  : 
- : <p>Example usage : <code> soft-cosine-tokens-jaro-winkler("The FLWOR Foundation", "FLWOR Found.", " +", 1, 4, 0.1 ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> soft-cosine-tokens-jaro-winkler("The FLWOR Foundation", "FLWOR Found.", " +", 1, 4, 0.1 ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.45 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.45 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -202,9 +202,9 @@
  : <p>similarity function to discover token identity.</p>
  : <p/>
  : 
- : <p>Example usage : <code> monge-elkan-jaro-winkler("Comput. Sci. and Eng. Dept., University of California, San Diego", "Department of Computer Scinece, Univ. Calif., San Diego", 4, 0.1) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> monge-elkan-jaro-winkler("Comput. Sci. and Eng. Dept., University of California, San Diego", "Department of Computer Scinece, Univ. Calif., San Diego", 4, 0.1) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.992 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.992 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.

=== modified file 'src/phonetic-string-similarity.xq'
--- src/phonetic-string-similarity.xq	2013-08-09 09:37:05 +0000
+++ src/phonetic-string-similarity.xq	2013-09-26 20:27:53 +0000
@@ -37,9 +37,9 @@
  : <p>Returns the Soundex key for a given string.</p>
  : <p/>
  : 
- : <p>Example usage : <code>soundex-key("Robert")</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">soundex-key("Robert")</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>"R163"</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">"R163"</pre></p>
  :
  : @param $s1 The string.
  : @return The Soundex key for the given input string.
@@ -58,9 +58,9 @@
  : <p>Checks if two strings have the same Soundex key.</p>
  : <p/>
  : 
- : <p>Example usage : <code>soundex( "Robert" , "Rupert" )</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">soundex( "Robert" , "Rupert" )</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>true</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">true</pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -76,9 +76,9 @@
  : <p>The Metaphone algorithm produces variable length keys as its output, as opposed to Soundex's fixed-length keys.</p>
  : <p/>
  : 
- : <p>Example usage : <code>metaphone-key("ALEKSANDER")</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">metaphone-key("ALEKSANDER")</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>"ALKSNTR"</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">"ALKSNTR"</pre></p>
  :
  : @param $s1 The string.
  : @return The Metaphone key for the given input string.
@@ -102,9 +102,9 @@
  : <p>Checks if two strings have the same Metaphone key.</p>
  : <p/>
  : 
- : <p>Example usage : <code>metaphone("ALEKSANDER", "ALEXANDRE")</code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery">metaphone("ALEKSANDER", "ALEXANDRE")</pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code>true</code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery">true</pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.

=== modified file 'src/set-similarity.xq'
--- src/set-similarity.xq	2013-08-09 09:37:05 +0000
+++ src/set-similarity.xq	2013-09-26 20:27:53 +0000
@@ -37,9 +37,9 @@
  : <p>Returns the union between two sets, using the deep-equal() function to compare the XML nodes from the sets.</p>
  : <p/>
  : 
- : <p>Example usage : <code> deep-union ( ( "a", "b", "c") , ( "a", "a", <d/> ) ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> deep-union ( ( "a", "b", "c") , ( "a", "a", <d/> ) ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> ("a", "b", "c", <d/> ) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> ("a", "b", "c", <d/> ) </pre></p>
  :
  : @param $s1 The first set.
  : @param $s2 The second set.
@@ -57,9 +57,9 @@
  : <p>Returns the intersection between two sets, using the deep-equal() function to compare the XML nodes from the sets.</p>
  : <p/>
  : 
- : <p>Example usage : <code> deep-intersect ( ( "a", "b", "c") , ( "a", "a", <d/> ) ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> deep-intersect ( ( "a", "b", "c") , ( "a", "a", <d/> ) ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> ("a") </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> ("a") </pre></p>
  :
  : @param $s1 The first set.
  : @param $s2 The second set.
@@ -78,9 +78,9 @@
  : <p>Removes exact duplicates from a set, using the deep-equal() function to compare the XML nodes from the sets.</p>
  : <p/>
  : 
- : <p>Example usage : <code> distinct ( ( "a", "a", <b/> ) ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> distinct ( ( "a", "a", <b/> ) ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> ("a", <b/> ) </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> ("a", <b/> ) </pre></p>
  :
  : @param $s A set.
  : @return The set provided as input without the exact duplicates (i.e., returns the distinct nodes from the set provided as input).
@@ -98,9 +98,9 @@
  : (i.e., the size of the intersection) over the size of the smallest input set.</p>
  : <p/>
  : 
- : <p>Example usage : <code> overlap ( ( "a", "b", <c/> ) , ( "a", "a", "b" ) ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> overlap ( ( "a", "b", <c/> ) , ( "a", "a", "b" ) ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 1.0 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 1.0 </pre></p>
  :
  : @param $s1 The first set.
  : @param $s2 The second set.
@@ -117,9 +117,9 @@
  : (i.e., the size of the intersection) over the sum of the cardinalities for the input sets.</p>
  : <p/>
  : 
- : <p>Example usage : <code> dice ( ( "a", "b", <c/> ) , ( "a", "a", "d") ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> dice ( ( "a", "b", <c/> ) , ( "a", "a", "d") ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.4 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.4 </pre></p>
  :
  : @param $s1 The first set.
  : @param $s2 The second set.
@@ -136,9 +136,9 @@
  : union of the input sets.</p>
  : <p/>
  : 
- : <p>Example usage : <code> jaccard ( ( "a", "b", <c/> ) , ( "a", "a", "d") ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> jaccard ( ( "a", "b", <c/> ) , ( "a", "a", "d") ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.25 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.25 </pre></p>
  :
  : @param $s1 The first set.
  : @param $s2 The second set.

=== modified file 'src/token-based-string-similarity.xq'
--- src/token-based-string-similarity.xq	2013-08-09 09:37:05 +0000
+++ src/token-based-string-similarity.xq	2013-09-26 20:27:53 +0000
@@ -48,9 +48,9 @@
  : <p>Returns the individual character n-grams forming a string.</p>
  : <p/>
  : 
- : <p>Example usage : <code> ngrams("FLWOR", 2 ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> ngrams("FLWOR", 2 ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> ("_F" , "FL" , "LW" , "WO" , "LW" , "WO" , "OR" , "R_") </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> ("_F" , "FL" , "LW" , "WO" , "LW" , "WO" , "OR" , "R_") </pre></p>
  :
  : @param $s The input string.
  : @param $n The number of characters to consider when extracting n-grams.
@@ -77,9 +77,9 @@
  : using stringdescriptors based on sets of character n-grams or sets of tokens extracted from two strings.</p>
  : <p/>
  : 
- : <p>Example usage : <code> cosine( ("aa","bb") , ("bb","aa")) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> cosine( ("aa","bb") , ("bb","aa")) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 1.0 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 1.0 </pre></p>
  :
  : @param $desc1 The descriptor for the first string.
  : @param $desc2 The descriptor for the second string.
@@ -100,9 +100,9 @@
  : <p>Returns the Dice similarity coefficient between sets of character n-grams extracted from two strings.</p>
  : <p/>
  : 
- : <p>Example usage : <code> dice-ngrams("DWAYNE", "DUANE", 2 ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> dice-ngrams("DWAYNE", "DUANE", 2 ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.4615384615384616 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.4615384615384616 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -118,9 +118,9 @@
  : <p>Returns the overlap similarity coefficient between sets of character n-grams extracted from two strings.</p>
  : <p/>
  : 
- : <p>Example usage : <code> overlap-ngrams("DWAYNE", "DUANE", 2 ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> overlap-ngrams("DWAYNE", "DUANE", 2 ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.5 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.5 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -136,9 +136,9 @@
  : <p>Returns the Jaccard similarity coefficient between sets of character n-grams extracted from two strings.</p>
  : <p/>
  : 
- : <p>Example usage : <code> jaccard-ngrams("DWAYNE", "DUANE", 2 ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> jaccard-ngrams("DWAYNE", "DUANE", 2 ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.3 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.3 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -156,9 +156,9 @@
  : the term-frequency heuristic from Information Retrieval).</p>
  : <p/>
  : 
- : <p>Example usage : <code> cosine-ngrams("DWAYNE", "DUANE", 2 ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> cosine-ngrams("DWAYNE", "DUANE", 2 ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.2401922307076307 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.2401922307076307 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -176,9 +176,9 @@
  : <p>Returns the Dice similarity coefficient between sets of tokens extracted from two strings.</p>
  : <p/>
  : 
- : <p>Example usage : <code> dice-tokens("The FLWOR Foundation", "FLWOR Found.", " +" ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> dice-tokens("The FLWOR Foundation", "FLWOR Found.", " +" ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.4 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.4 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -194,9 +194,9 @@
  : <p>Returns the overlap similarity coefficient between sets of tokens extracted from two strings.</p>
  : <p/>
  : 
- : <p>Example usage : <code> overlap-tokens("The FLWOR Foundation", "FLWOR Found.", " +" ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> overlap-tokens("The FLWOR Foundation", "FLWOR Found.", " +" ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.5 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.5 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -212,9 +212,9 @@
  : <p>Returns the Jaccard similarity coefficient between sets of tokens extracted from two strings.</p>
  : <p/>
  : 
- : <p>Example usage : <code> jaccard-tokens("The FLWOR Foundation", "FLWOR Found.", " +" ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> jaccard-tokens("The FLWOR Foundation", "FLWOR Found.", " +" ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.25 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.25 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.
@@ -232,9 +232,9 @@
  : term-frequency heuristic from Information Retrieval).</p>
  : <p/>
  : 
- : <p>Example usage : <code> cosine-tokens("The FLWOR Foundation", "FLWOR Found.", " +" ) </code></p>
+ : <p>Example usage : <pre class="ace-static" ace-mode="xquery"> cosine-tokens("The FLWOR Foundation", "FLWOR Found.", " +" ) </pre></p>
  : <p/>
- : <p>The function invocation in the example above returns : <code> 0.408248290463863 </code></p>
+ : <p>The function invocation in the example above returns : <pre class="ace-static" ace-mode="xquery"> 0.408248290463863 </pre></p>
  :
  : @param $s1 The first string.
  : @param $s2 The second string.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to     : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp

Reply via email to