diff options
| author | Krasimir Angelov <kr.angelov@gmail.com> | 2018-11-28 15:32:43 +0100 |
|---|---|---|
| committer | Krasimir Angelov <kr.angelov@gmail.com> | 2018-11-28 15:32:43 +0100 |
| commit | b0c3aef6ec83e1f390b1dae02f68dc5354ce71d0 (patch) | |
| tree | 594ecf37c213c08b2d59e346ea09125321b6de0a | |
| parent | 05c2cfb628147f7d6fa0a6c2f38eb9d67b2eb007 (diff) | |
add a few missing special tokens to the reference
| -rw-r--r-- | doc/gf-refman.html | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/doc/gf-refman.html b/doc/gf-refman.html index e7db8829a..edfb2c625 100644 --- a/doc/gf-refman.html +++ b/doc/gf-refman.html @@ -3120,23 +3120,44 @@ a part of the GF grammar compiler. <TR> <TD><CODE>nonExist</CODE></TD> <TD><CODE>Str</CODE></TD> -<TD>this is a special token marking<BR/> +<TD>a special token marking<BR/> non-existing morphological forms</TD> </TR> <TR> <TD><CODE>BIND</CODE></TD> <TD><CODE>Str</CODE></TD> -<TD>this is a special token marking<BR/> +<TD>a special token marking<BR/> that the surrounding tokens should not<BR/> be separated by space</TD> </TR> <TR> <TD><CODE>SOFT_BIND</CODE></TD> <TD><CODE>Str</CODE></TD> -<TD>this is a special token marking<BR/> +<TD>a special token marking<BR/> that the surrounding tokens may not<BR/> be separated by space</TD> </TR> +<TR> +<TD><CODE>SOFT_SPACE</CODE></TD> +<TD><CODE>Str</CODE></TD> +<TD>a special token marking<BR/> +that the space between the surrounding tokens<BR/> +is optional</TD> +</TR> +<TR> +<TD><CODE>CAPIT</CODE></TD> +<TD><CODE>Str</CODE></TD> +<TD>a special token marking<BR/> +that the first character in the next token<BR/> +should be capitalized</TD> +</TR> +<TR> +<TD><CODE>ALL_CAPIT</CODE></TD> +<TD><CODE>Str</CODE></TD> +<TD>a special token marking<BR/> +that the next word should be<BR/> +in all capital letters</TD> +</TR> </TABLE> <P></P> |
