File: tech-spell-checking.page

package info (click to toggle)
gnome-devel-docs 40.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 79,188 kB
  • sloc: javascript: 2,514; xml: 2,407; ansic: 2,229; python: 1,854; makefile: 805; sh: 499; cpp: 131
file content (49 lines) | stat: -rw-r--r-- 1,550 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<page xmlns="http://projectmallard.org/1.0/"
      xmlns:its="http://www.w3.org/2005/11/its"
      type="topic"
      id="tech-spell-checking">

  <info>
    <link type="guide" xref="tech" group="spell-checking"/>

    <credit type="author copyright">
      <name>Federico Mena Quintero</name>
      <email its:translate="no">federico@gnome.org</email>
      <years>2013</years>
    </credit>
    <credit type="author copyright">
      <name>Sébastien Wilmet</name>
      <email its:translate="no">swilmet@gnome.org</email>
      <years>2017</years>
    </credit>

    <include href="cc-by-sa-3-0.xml" xmlns="http://www.w3.org/2001/XInclude"/>

    <desc>Spell-checking for text widgets</desc>
  </info>

<title>Spell-checking</title>

  <p>
    Several libraries are available to do spell-checking related tasks: Enchant
    and gspell.
  </p>

  <p>
    Enchant provides a low-level API.  You can ask it if a word is misspelled,
    or ask for suggestions for a misspelled word.  On a higher level, gspell
    integrates spell-checking for GTK text widgets (both <code>GtkEntry</code>
    and <code>GtkTextView</code>).
  </p>

  <p>
    In GNOME, those libraries get used in text-heavy applications like gedit (a
    text editor) and Epiphany (a web browser, for text entry in web forms).
  </p>

  <list style="compact">
    <item><p><link href="https://www.abisource.com/projects/enchant/">Enchant home page</link></p></item>
    <item><p><link href="https://wiki.gnome.org/Projects/gspell">gspell home page</link></p></item>
  </list>

</page>