spell:add-word( $uri as xs:string, $word as xs:string ) as empty-sequence()
Add the word $word to the dictionary at $uri.
Parameters | |
---|---|
uri | The URI of the dictionary. |
word | The word to add. |
xquery version "1.0-ml"; import module namespace spell = "http://marklogic.com/xdmp/spell" at "/MarkLogic/spell.xqy"; spell:add-word("/mySpell/spell.xml", "WebDAV") => adds the word "WebDAV" to the specified dictionary
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.