Consistently escape "@" in wxRichTextCtrl documentation

The first occurrence of it was escaped, but the second one in each line
was not, resulting in warnings about "unknown command @:".
This commit is contained in:
Vadim Zeitlin 2022-03-28 00:18:02 +02:00
parent 7a269df2bf
commit 19d477aabf

View file

@ -44,11 +44,11 @@ enum wxRichTextPageLocation {
You can specify the following keywords in header and footer text, which will
be substituted for the actual values during printing and preview.
- @@DATE@: the current date.
- @@PAGESCNT@: the total number of pages.
- @@PAGENUM@: the current page number.
- @@TIME@: the current time.
- @@TITLE@: the title of the document, as passed to the wxRichTextPrinting or
- @@DATE@@: the current date.
- @@PAGESCNT@@: the total number of pages.
- @@PAGENUM@@: the current page number.
- @@TIME@@: the current time.
- @@TITLE@@: the title of the document, as passed to the wxRichTextPrinting or
wxRichTextLayout constructor.
@library{wxrichtext}