diff --git a/reference/aspell/functions/aspell-check-raw.xml b/reference/aspell/functions/aspell-check-raw.xml
index 32b53da8b9..06f7386ae7 100644
--- a/reference/aspell/functions/aspell-check-raw.xml
+++ b/reference/aspell/functions/aspell-check-raw.xml
@@ -1,5 +1,5 @@
-
+
aspell_check_raw
@@ -7,21 +7,56 @@
Check a word without changing its case or trying to trim it [deprecated]
-
- Description
+
+ &reftitle.description;
boolaspell_check_raw
intdictionary_link
stringword
-
+
aspell_check_raw checks the spelling of a
- word, without changing its case or trying to trim it in any way
- and returns &true; if the spelling is correct, &false; if not.
-
+ word, without changing its case or trying to trim it in any way.
+
+
+
+
+ &reftitle.parameters;
+
+
+
+ dictionary_link
+
+
+ The dictionnary link identifier returned by
+ aspell_new.
+
+
+
+
+ word
+
+
+ The tested word.
+
+
+
+
+
+
+
+
+ &reftitle.returnvalues;
+
+ Returns &true; if the spelling is correct, &false; if not.
+
+
+
+
+ &reftitle.examples;
- aspell_check_raw
+ aspell_check_raw Example
+
+
+ &reftitle.seealso;
+
+
+ aspell_check
+
+
+
+
aspell_check
Check a word [deprecated]
-
- Description
+
+ &reftitle.description;
boolaspell_check
intdictionary_link
stringword
-
- aspell_check checks the spelling of a word
- and returns &true; if the spelling is correct, &false; if not.
-
+
+ aspell_check checks the spelling of a word.
+
+
+
+
+ &reftitle.parameters;
+
+
+
+ dictionary_link
+
+
+ The dictionnary link identifier returned by
+ aspell_new.
+
+
+
+
+ word
+
+
+ The tested word.
+
+
+
+
+
+
+
+
+ &reftitle.returnvalues;
+
+ Returns &true; if the spelling is correct, &false; if not.
+
+
+
+
+ &reftitle.examples;
- aspell_check
+ aspell_check Example
+
+
+ &reftitle.seealso;
+
+
+ aspell_check_raw
+
+
+
+
aspell_new
Load a new dictionary [deprecated]
-
- Description
+
+ &reftitle.description;
intaspell_new
stringmaster
stringpersonal
-
- aspell_new opens up a new dictionary and
- returns the dictionary link identifier for use in other aspell
- functions. Returns &false; on error.
-
+
+ aspell_new opens up a new dictionary for use with the
+ other aspell functions.
+
+
+
+
+ &reftitle.parameters;
+
+
+
+ master
+
+
+ Language.
+
+
+
+
+ personal
+
+
+ Default to empty string.
+
+
+
+
+
+
+
+
+ &reftitle.returnvalues;
+
+ Returns a dictionary link identifier or &false; on error.
+
+
+
+
+ &reftitle.examples;
- aspell_new
+ aspell_new Example
-
+
aspell_suggest
Suggest spellings of a word [deprecated]
-
- Description
+
+ &reftitle.description;
arrayaspell_suggest
intdictionary_link
stringword
-
- aspell_suggest returns an array of possible
- spellings for the given word.
-
+
+ aspell_suggest suggest spellings for the given
+ word.
+
+
+
+
+ &reftitle.parameters;
+
+
+
+ dictionary_link
+
+
+ The dictionnary link identifier returned by
+ aspell_new.
+
+
+
+
+ word
+
+
+ The tested word.
+
+
+
+
+
+
+
+
+ &reftitle.returnvalues;
+
+ Returns an array of suggestions.
+
+
+
+
+ &reftitle.examples;
- aspell_suggest
+ aspell_suggest Example