Compare commits

..

2 Commits

Author SHA1 Message Date
tooomm
a394a5910c Fix rendering for doxygen 2025-12-21 17:25:33 +01:00
tooomm
e2790dcbf7 Use HTML link to open webpage in new tab 2025-12-21 17:08:28 +01:00
5 changed files with 12 additions and 19 deletions

View File

@@ -1,11 +1,13 @@
@page deck_search_syntax_help Deck Search Syntax Help
## Deck Search Syntax Help
-----
The search bar recognizes a set of special commands.<br>
In this list of examples below, each entry has an explanation and can be clicked to test the query. Note that all
searches are case insensitive.
<dl>
<dt>Display Name (The deck name, or the filename if the deck name isn't set):</dt>
<dd>[red deck wins](#red deck wins) <small>(Any deck with a display name containing the words red, deck, and wins)</small></dd>
<dd>["red deck wins"](#%22red deck wins%22) <small>(Any deck with a display name containing the exact phrase "red deck wins")</small></dd>

View File

@@ -1,10 +1,12 @@
@page search_syntax_help Search Syntax Help
## Search Syntax Help
-----
The search bar recognizes a set of special commands similar to some other card databases.<br>
In this list of examples below, each entry has an explanation and can be clicked to test the query. Note that all searches are case insensitive.
<dl>
<dt>Name:</dt>
<dd>[birds of paradise](#birds of paradise) <small>(Any card name containing the words birds, of, and paradise)</small></dd>
<dd>["birds of paradise"](#%22birds of paradise%22) <small>(Any card name containing the exact phrase "birds of paradise")</small></dd>

View File

@@ -1,16 +1,3 @@
@page card_database_schema_and_parsing Card Database Schema and Parsing
# Card Database Schemas
Cockatrice uses `XML files` to store information of available cards to be used in the app (`cards.xml`).
The token file follows the schema of the card database (`tokens.xml`), too.
Saved decks (`<deckname>.xml`) use a different schema.
- [XSD Schema for `Card Databases`](https://github.com/Cockatrice/Cockatrice/blob/master/doc/carddatabase_v4/cards.xsd) <kbd>v4</kbd>
- [XSD Schema for `Decks`](https://github.com/Cockatrice/Cockatrice/blob/master/doc/deck.xsd) <kbd>v1</kbd>
# Card Database Parsing
TODO

View File

@@ -7,4 +7,4 @@ This is the **main landing page** of the Cockatrice documentation.
- Go to the @subpage user_reference page
- Review the @subpage developer_reference
Or check out the [Cockatrice Webpage](https://cockatrice.github.io/).
Or check out the <a href="https://cockatrice.github.io/" target="_blank" rel="noopener noreferrer">Cockatrice Webpage</a>.

View File

@@ -8,8 +8,10 @@ by selecting "Deck Editor" or "Visual Deck Editor" under the "Tabs" application
# Further References
- See @ref editing_decks for information on how to modify the attributes and contents of a deck in the Deck Editor
See @ref editing_decks for information on how to modify the attributes and contents of a deck in the Deck Editor
widgets.
- See @ref exporting_decks for information on how to store and persist your deck either in-client or to external
See @ref exporting_decks for information on how to store and persist your deck either in-client or to external
services.
- See @ref importing_decks for information on how to import existing decks either in-client or from external services
See @ref importing_decks for information on how to import existing decks either in-client or from external services