Commit ce720961 authored by twanvl's avatar twanvl

spellchecking the documentation

parent f6e46ac7
...@@ -39,7 +39,7 @@ The records consists of: ...@@ -39,7 +39,7 @@ The records consists of:
Strings are not further encoded or escaped. Strings are not further encoded or escaped.
In this mode multi line strings can be transfered from MSE without much encoding/parsing hastle. In this mode multi line strings can be transfered from MSE without much encoding/parsing hassle.
The behaviour of the raw mode is guaranteed not to change between versions of MSE (subject to bugs and changes in the scripting language), The behaviour of the raw mode is guaranteed not to change between versions of MSE (subject to bugs and changes in the scripting language),
for the normal mode no such guarantee is made. for the normal mode no such guarantee is made.
......
...@@ -43,7 +43,7 @@ Global installation is for all users, local installation is for the current user ...@@ -43,7 +43,7 @@ Global installation is for all users, local installation is for the current user
]mse --create-installer <em>output.mse-installer</em> <em>package1.mse-game</em> <em>package2.mse-game</em> ... ]mse --create-installer <em>output.mse-installer</em> <em>package1.mse-game</em> <em>package2.mse-game</em> ...
Creates an installer package containing one or more packages from the mse [[file:index|data directory]]. Creates an installer package containing one or more packages from the mse [[file:index|data directory]].
The installer will be written to <tt><em>output.mse-installer</em></tt>. This name can be ommitted, in which case the name of the forst package will be used (in this case <tt>package1.mse-installer</tt>). The installer will be written to <tt><em>output.mse-installer</em></tt>. This name can be omitted, in which case the name of the first package will be used (in this case <tt>package1.mse-installer</tt>).
--Interactive cli interface-- --Interactive cli interface--
......
...@@ -8,17 +8,19 @@ DOC_MSE_VERSION: since 0.3.7 ...@@ -8,17 +8,19 @@ DOC_MSE_VERSION: since 0.3.7
Convert any value to a [[type:string]] representation. Convert any value to a [[type:string]] representation.
The @to_string@ function should not be confused with @to_text@, The @to_string@ function should not be confused with @to_text@.
the former converts things like number to string, while the latter removes tags from a [[type:tagged string]]. The former converts things like number to string, while the latter removes tags from a [[type:tagged string]].
--Parameters-- --Parameters--
! Parameter Type Description ! Parameter Type Description
| @input@ ''any type'' Value to convert to a string | @input@ ''any type'' Value to convert to a string
| @format@ ''optional'' Formating to apply. | @format@ ''optional'' Formatting to apply.<br/>
This takes the same form as [[http://www.cplusplus.com/reference/clibrary/cstdio/printf.html|printf format specifiers]].
--Examples-- --Examples--
> to_string(to_color("blue")) == "rgb(0,0,255)" > to_string(to_color("blue")) == "rgb(0,0,255)"
> to_string(10 + 20) == "30" > to_string(10 + 20) == "30"
> to_string(10 + 20, format: ".3f") == "30.000" > to_string(10 + 20, format: ".3f") == "30.000"
> to_string(10 + 20, format: "x") == "1e" # hexadecimal notation > to_string(10 + 20, format: "x") == "1e" # hexadecimal notation
> to_string("xy", format: "3s") == " xy"
...@@ -76,14 +76,14 @@ Additional properties are available, depending on the type of field: ...@@ -76,14 +76,14 @@ Additional properties are available, depending on the type of field:
| @"multiple choice"@ <<< <<< <<< | @"multiple choice"@ <<< <<< <<<
'' Multiple choice fields have the same attributes as normal choice fields.''<br/> '' Multiple choice fields have the same attributes as normal choice fields.''<br/>
To refer to a combination of values in the initial attribute use @choice1, choice2, choice3@.<br/> To refer to a combination of values in the initial attribute use @choice1, choice2, choice3@.<br/>
These choices must apear in the same order as they do in the @choices@ property. These choices must appear in the same order as they do in the @choices@ property.
| @"boolean"@ ''A boolean field is a choice field with the choices @"yes"@ and @"no"@.'' <<< <<< <<< | @"boolean"@ ''A boolean field is a choice field with the choices @"yes"@ and @"no"@.'' <<< <<< <<<
| @"package choice"@ | @"package choice"@
@script@ [[type:script]] Script to apply to values of this field after each change.<br/> @script@ [[type:script]] Script to apply to values of this field after each change.<br/>
If the script evaluates to a constant (i.e. doesn't use @value@) then values in this field can effectively not be edited. If the script evaluates to a constant (i.e. doesn't use @value@) then values in this field can effectively not be edited.
| ^^^ @match@ [[type:string]] ''required'' Filenames of the pakcages to match, can include wildcards @"*"@. For example @"magic-mana-*.mse-symbol-font"@. | ^^^ @match@ [[type:string]] ''required'' Filenames of the packages to match, can include wildcards @"*"@. For example @"magic-mana-*.mse-symbol-font"@.
| ^^^ @initial@ [[type:string]] ''required'' Initial package for new values for this field. | ^^^ @initial@ [[type:string]] ''required'' Initial package for new values for this field.
| ^^^ @reqired@ [[type:boolean]] @true@ Must a package always be selected? Or is it allowed to select nothing? | ^^^ @reqired@ [[type:boolean]] @true@ Must a package always be selected? Or is it allowed to select nothing?
| ^^^ @empty name@ [[type:string]] @"None"@ Name of the empty state. Applies only if @required: false@. | ^^^ @empty name@ [[type:string]] @"None"@ Name of the empty state. Applies only if @required: false@.
......
...@@ -30,10 +30,10 @@ Such a package contains a [[file:format|data file]] called <tt>game</tt> that ha ...@@ -30,10 +30,10 @@ Such a package contains a [[file:format|data file]] called <tt>game</tt> that ha
| @init script@ [[type:script]] @;@ Script to run when this game is loaded,<br/> can set variables | @init script@ [[type:script]] @;@ Script to run when this game is loaded,<br/> can set variables
to be used by other scripts in this game or stylesheets using it. to be used by other scripts in this game or stylesheets using it.
| @set fields@ [[type:list]] of [[type:field]]s Fields for the styling panel. | @set fields@ [[type:list]] of [[type:field]]s Fields for the styling panel.
| @default set style@ [[type:indexmap]] of [[type:style]]s Default style for the set fields, can be overriden by the stylesheet. | @default set style@ [[type:indexmap]] of [[type:style]]s Default style for the set fields, can be overridden by the stylesheet.
| @card fields@ [[type:list]] of [[type:field]]s Fields for each card. | @card fields@ [[type:list]] of [[type:field]]s Fields for each card.
| @card list color script@ [[type:script]] from fields Script that determines the color of an item in the card list. <br/>If not set uses the @card list colors@ property of the first card field that has it. | @card list color script@ [[type:script]] from fields Script that determines the color of an item in the card list. <br/>If not set uses the @card list colors@ property of the first card field that has it.
| @statistics dimensions@ [[type:list]] of [[type:statistics dimension]]s from fields Dimensions for statistics, a dimension is rougly the same as an axis. <br/>By default all card fields with 'show statistics' set to true are used. | @statistics dimensions@ [[type:list]] of [[type:statistics dimension]]s from fields Dimensions for statistics, a dimension is roughly the same as an axis. <br/>By default all card fields with 'show statistics' set to true are used.
| @statistics categories@ [[type:list]] of [[type:statistics category]]s from dimensions DOC_MSE_VERSION: not used since 0.3.6 | @statistics categories@ [[type:list]] of [[type:statistics category]]s from dimensions DOC_MSE_VERSION: not used since 0.3.6
Choices shown on the statistics panel. <br/>By default all statistics dimensions are used. Choices shown on the statistics panel. <br/>By default all statistics dimensions are used.
| @pack items@ [[type:list]] of [[type:pack item]]s DOC_MSE_VERSION: since 0.3.7 | @pack items@ [[type:list]] of [[type:pack item]]s DOC_MSE_VERSION: since 0.3.7
...@@ -47,7 +47,7 @@ Such a package contains a [[file:format|data file]] called <tt>game</tt> that ha ...@@ -47,7 +47,7 @@ Such a package contains a [[file:format|data file]] called <tt>game</tt> that ha
| @keywords@ [[type:list]] of [[type:keyword]]s Standard keywords for this game. | @keywords@ [[type:list]] of [[type:keyword]]s Standard keywords for this game.
| @word lists@ [[type:list]] of [[type:word list]]s Word lists that can be used by text fields. | @word lists@ [[type:list]] of [[type:word list]]s Word lists that can be used by text fields.
| @add cards script@ [[type:list]] of [[type:add cards script]]s DOC_MSE_VERSION: since 0.3.7 | @add cards script@ [[type:list]] of [[type:add cards script]]s DOC_MSE_VERSION: since 0.3.7
A list of scripts for convienently adding multiple cards to a set. A list of scripts for conveniently adding multiple cards to a set.
--Examples-- --Examples--
Look at the game files in the standard MSE distribution for examples. Look at the game files in the standard MSE distribution for examples.
...@@ -2,7 +2,7 @@ Data type: keyword parameter reference script ...@@ -2,7 +2,7 @@ Data type: keyword parameter reference script
--Overview-- --Overview--
A wat to use a [[type:keyword param type|keyword parameter]] in a [[type:keyword]]'s reminder text. A way to use a [[type:keyword param type|keyword parameter]] in a [[type:keyword]]'s reminder text.
Usually the parameters are included as @"{param1}"@, etc. Usually the parameters are included as @"{param1}"@, etc.
But in some cases for instance a function should be applied, @"{fun(param1)}"@. But in some cases for instance a function should be applied, @"{fun(param1)}"@.
......
...@@ -21,7 +21,7 @@ A type of parameter that can be used in a [[type:keyword]]. ...@@ -21,7 +21,7 @@ A type of parameter that can be used in a [[type:keyword]].
| @reminder script@ [[type:script]] Script to apply to parameters of this type before using them in the reminder text. | @reminder script@ [[type:script]] Script to apply to parameters of this type before using them in the reminder text.
| @example@ [[type:string]] Example for in the keyword editor, currently not used. | @example@ [[type:string]] Example for in the keyword editor, currently not used.
| @refer scripts@ [[type:list]] of [[type:keyword param reference script]]s | @refer scripts@ [[type:list]] of [[type:keyword param reference script]]s
Scripts for inserting paramaters of this type into the reminder text. Scripts for inserting parameters of this type into the reminder text.
To make this easy for the user, a menu of ways to use a parameter is provided. To make this easy for the user, a menu of ways to use a parameter is provided.
--Example-- --Example--
......
...@@ -23,7 +23,7 @@ There are usually no other files in the package. ...@@ -23,7 +23,7 @@ There are usually no other files in the package.
| @menu@ [[type:map]] of [[type:string]]s Translations of menu items.<br/> | @menu@ [[type:map]] of [[type:string]]s Translations of menu items.<br/>
Menu items can contain shortcut keys (like Ctrl+C for copy) by using a ''single'' TAB between the text and the shortcut key.<br/> Menu items can contain shortcut keys (like Ctrl+C for copy) by using a ''single'' TAB between the text and the shortcut key.<br/>
Keys to use with Alt+Something (displayed underlined) can be specified &</br> Keys to use with Alt+Something (displayed underlined) can be specified &</br>
For exmaple For example
>>>new set: &amp;New...&#9;Ctrl+N >>>new set: &amp;New...&#9;Ctrl+N
| @help@ [[type:map]] of [[type:string]]s Translations of help texts for the status bar. | @help@ [[type:map]] of [[type:string]]s Translations of help texts for the status bar.
| @tool@ [[type:map]] of [[type:string]]s Translations of toolbar item texts. | @tool@ [[type:map]] of [[type:string]]s Translations of toolbar item texts.
......
...@@ -21,7 +21,7 @@ For example: ...@@ -21,7 +21,7 @@ For example:
> width: 20 > width: 20
Implies that @right@ is 30 pixels. Implies that @right@ is 30 pixels.
Similairly: Similarly:
> left: 10 > left: 10
> right: 30 > right: 30
Implies the @width@ is 20. Implies the @width@ is 20.
...@@ -67,7 +67,7 @@ Here are some examples: ...@@ -67,7 +67,7 @@ Here are some examples:
--Properties-- --Properties--
! Property Type Default Description ! Property Type Default Description
| @z index@ [[type:int]] @0@ Stacking of this box, fields with a heigher @z index@ are placed on top of those with a lower index. | @z index@ [[type:int]] @0@ Stacking of this box, fields with a higher @z index@ are placed on top of those with a lower index.
| @left@ [[type:scriptable]] [[type:double]] ''Required'' Distance between left edge of the box and the left of the card in pixels. | @left@ [[type:scriptable]] [[type:double]] ''Required'' Distance between left edge of the box and the left of the card in pixels.
| @width@ [[type:scriptable]] [[type:double]] ''Required'' Width of the box in pixels. | @width@ [[type:scriptable]] [[type:double]] ''Required'' Width of the box in pixels.
| @right@ [[type:scriptable]] [[type:double]] ''Required'' Distance between right edge of the box and the ''left'' of the card in pixels. | @right@ [[type:scriptable]] [[type:double]] ''Required'' Distance between right edge of the box and the ''left'' of the card in pixels.
...@@ -91,7 +91,7 @@ The rest of the properties depend on the type of [[type:field]] this style is fo ...@@ -91,7 +91,7 @@ The rest of the properties depend on the type of [[type:field]] this style is fo
| ^^^ @padding right@ ^^^ ^^^ ^^^ | ^^^ @padding right@ ^^^ ^^^ ^^^
| ^^^ @padding top@ ^^^ ^^^ ^^^ | ^^^ @padding top@ ^^^ ^^^ ^^^
| ^^^ @padding bottom@ ^^^ ^^^ ^^^ | ^^^ @padding bottom@ ^^^ ^^^ ^^^
| ^^^ @padding left min@ [[type:scriptable]] [[type:double]] &infin; Minimal padding around the field.<br/> When the text is scalled down the padding is scalled as well, but it becomes no smaller than this. | ^^^ @padding left min@ [[type:scriptable]] [[type:double]] &infin; Minimal padding around the field.<br/> When the text is scaled down the padding is scaled as well, but it becomes no smaller than this.
| ^^^ @padding right min@ ^^^ ^^^ ^^^ | ^^^ @padding right min@ ^^^ ^^^ ^^^
| ^^^ @padding top min@ ^^^ ^^^ ^^^ | ^^^ @padding top min@ ^^^ ^^^ ^^^
| ^^^ @padding bottom min@ ^^^ ^^^ ^^^ | ^^^ @padding bottom min@ ^^^ ^^^ ^^^
...@@ -116,11 +116,11 @@ The rest of the properties depend on the type of [[type:field]] this style is fo ...@@ -116,11 +116,11 @@ The rest of the properties depend on the type of [[type:field]] this style is fo
! <<< <<< <<< <<< ! <<< <<< <<< <<<
| @"choice"@,<br/>@"multiple choice"@,<br/>@"boolean"@ | @"choice"@,<br/>@"multiple choice"@,<br/>@"boolean"@
@popup style@ @"drop down"@ or @"in place"@ @"drop down"@ Where to place the drop down box for editing the value.<br/> @popup style@ @"drop down"@ or @"in place"@ @"drop down"@ Where to place the drop down box for editing the value.<br/>
@"drop down"@ places the box below the field, similair to normal combo boxes.<br/> @"drop down"@ places the box below the field, similar to normal combo boxes.<br/>
@"in place"@ places the box at the mouse coordinates. @"in place"@ places the box at the mouse coordinates.
| ^^^ @render style@ [[type:choice render style]] @"text"@ How should the field be rendered? | ^^^ @render style@ [[type:choice render style]] @"text"@ How should the field be rendered?
| ^^^ @mask@ [[type:scriptable]] [[type:filename]] ''none'' A mask to apply to the image, black areas in the mask become transparent, similair to [[fun:set_mask]]. | ^^^ @mask@ [[type:scriptable]] [[type:filename]] ''none'' A mask to apply to the image, black areas in the mask become transparent, similar to [[fun:set_mask]].
| ^^^ @combine@ [[type:combine]] @"normal"@ How to combine the image with the background? Can be overriden using the [[fun:set_combine]] function. | ^^^ @combine@ [[type:combine]] @"normal"@ How to combine the image with the background? Can be overridden using the [[fun:set_combine]] function.
| ^^^ @alignment@ [[type:alignment]] @"stretch"@ Alignment of text and images in the box. | ^^^ @alignment@ [[type:alignment]] @"stretch"@ Alignment of text and images in the box.
| ^^^ @font@ [[type:font]] Font to use for rendering text (depending on @render style@) | ^^^ @font@ [[type:font]] Font to use for rendering text (depending on @render style@)
| ^^^ @image@ [[type:image|scriptable image]] Image to show (depending on @render style@).<br/> | ^^^ @image@ [[type:image|scriptable image]] Image to show (depending on @render style@).<br/>
...@@ -131,7 +131,7 @@ The rest of the properties depend on the type of [[type:field]] this style is fo ...@@ -131,7 +131,7 @@ The rest of the properties depend on the type of [[type:field]] this style is fo
This is only useful when the alignment is changed, otherwise it is always equal the box size itself. This is only useful when the alignment is changed, otherwise it is always equal the box size itself.
| ^^^ @content height@ [[type:double]] ''automatic'' When read from a script, gives the height of the current choice image in this box. | ^^^ @content height@ [[type:double]] ''automatic'' When read from a script, gives the height of the current choice image in this box.
| @"multiple choice"@ | @"multiple choice"@
@direction@ [[type:direction]] @"left to right"@ Direction the items are layed out in, only when @render style@ is @list@. @direction@ [[type:direction]] @"left to right"@ Direction the items are laid out in, only when @render style@ is @list@.
| ^^^ @spacing@ [[type:double]] @0@ Spacing between the items. | ^^^ @spacing@ [[type:double]] @0@ Spacing between the items.
! <<< <<< <<< <<< ! <<< <<< <<< <<<
...@@ -151,8 +151,8 @@ The rest of the properties depend on the type of [[type:field]] this style is fo ...@@ -151,8 +151,8 @@ The rest of the properties depend on the type of [[type:field]] this style is fo
! <<< <<< <<< <<< ! <<< <<< <<< <<<
| @"symbol"@ @variations@ [[type:list]] of [[type:symbol variation]]s Available variations of the symbol, a variation describes color and border size. | @"symbol"@ @variations@ [[type:list]] of [[type:symbol variation]]s Available variations of the symbol, a variation describes color and border size.
| ^^^ @min aspec ratio@ [[type:double]] @1@ Bounds for the aspect ratio, @width/height@ symbols can take. This can be used to make non-squary symbols. | ^^^ @min aspect ratio@ [[type:double]] @1@ Bounds for the aspect ratio, @width/height@ symbols can take. This can be used to make non-square symbols.
| ^^^ @max aspec ratio@ [[type:double]] @1@ ^^^ | ^^^ @max aspect ratio@ [[type:double]] @1@ ^^^
! <<< <<< <<< <<< ! <<< <<< <<< <<<
| @"info"@ @font@ [[type:font]] ''Required'' Font to render the text. | @"info"@ @font@ [[type:font]] ''Required'' Font to render the text.
......
...@@ -29,7 +29,7 @@ such a package contains a data file called <tt>style</tt>. ...@@ -29,7 +29,7 @@ such a package contains a data file called <tt>style</tt>.
| @game@ Name of a [[type:game]] ''required'' Game this stylesheet is made for | @game@ Name of a [[type:game]] ''required'' Game this stylesheet is made for
| @card width@ [[type:double]] 100 Width of cards in pixels | @card width@ [[type:double]] 100 Width of cards in pixels
| @card height@ [[type:double]] 100 Height of cards in pixels | @card height@ [[type:double]] 100 Height of cards in pixels
| @card dpi@ [[type:double]] 96 Resoltion of cards in dots-per-inch | @card dpi@ [[type:double]] 96 Resolution of cards in dots-per-inch
| @card background@ [[type:color]] white Background color of cards | @card background@ [[type:color]] white Background color of cards
| @init script@ [[type:script]] @;@ Script to run when this stylesheet is loaded, after the game's init script. | @init script@ [[type:script]] @;@ Script to run when this stylesheet is loaded, after the game's init script.
| @styling fields@ [[type:list] of [[type:field]]s Fields for styling options, shown on the 'style' panel. | @styling fields@ [[type:list] of [[type:field]]s Fields for styling options, shown on the 'style' panel.
......
...@@ -17,11 +17,11 @@ Otherwise the "W" is seen as a symbol and the program continues with rendering " ...@@ -17,11 +17,11 @@ Otherwise the "W" is seen as a symbol and the program continues with rendering "
--Font size-- --Font size--
A symbol font is drawn using a specific point size, similair to normal fonts. A symbol font is drawn using a specific point size, similar to normal fonts.
Usually the images that make up the font are given in a very high resolution, for example 200x200. Usually the images that make up the font are given in a very high resolution, for example 200x200.
This resulution could correspond to a point size of for instance 150pt. This resolution could correspond to a point size of for instance 150pt.
When the symbol is drawn at for instance 12pt the image well then be scalled down to @200/150*12 == 16@ pixels. When the symbol is drawn at for instance 12pt the image well then be scaled down to @200/150*12 == 16@ pixels.
Sizes like margin, padding and font size are given in 'pixels per point'. If for instance Sizes like margin, padding and font size are given in 'pixels per point'. If for instance
> text margin left: 0.1 > text margin left: 0.1
......
...@@ -4,7 +4,7 @@ Data type: string with tags ...@@ -4,7 +4,7 @@ Data type: string with tags
Strings in [[type:value|text values]] can contain markup tags. Strings in [[type:value|text values]] can contain markup tags.
These tags affect the presentation and sometimes the behaviour of the text. These tags affect the presentation and sometimes the behaviour of the text.
A tag is something like @"<tag>some text</tag>"@, similair to HTML. A tag is something like @"<tag>some text</tag>"@, similar to HTML.
Tags are closed by the same tag with a @/@ before it. Tags are closed by the same tag with a @/@ before it.
To represent the character @"<"@ in a tagged string use @"\<"@ in script code. To represent the character @"<"@ in a tagged string use @"\<"@ in script code.
...@@ -16,7 +16,7 @@ This is written as the character with code 1 in files. ...@@ -16,7 +16,7 @@ This is written as the character with code 1 in files.
| @"<i>"@ The text inside the tag is italic. | @"<i>"@ The text inside the tag is italic.
| @"<sym>"@ The text inside the tag is rendered as symbols, if a [[prop:style:symbol font]] is set for the text box. | @"<sym>"@ The text inside the tag is rendered as symbols, if a [[prop:style:symbol font]] is set for the text box.
| @"<color:???>"@ The text inside the tag is rendered with the given [[type:color]]. | @"<color:???>"@ The text inside the tag is rendered with the given [[type:color]].
| @"<size:???>"@ The text inside the tag is rendered with the given font size in points, for example @"<size:12>text</size>"@ makes the text 12 points. The text is scaled down proportianally when it does not fit in a text box and the @scale down to@ attribute allows it. | @"<size:???>"@ The text inside the tag is rendered with the given font size in points, for example @"<size:12>text</size>"@ makes the text 12 points. The text is scaled down proportionally when it does not fit in a text box and the @scale down to@ attribute allows it.
| @"<line>"@ Line breaks inside this tag use the [[prop:style:line height line]], and they show a horizontal line. | @"<line>"@ Line breaks inside this tag use the [[prop:style:line height line]], and they show a horizontal line.
| @"<soft-line>"@ Line breaks inside this tag use the [[prop:style:soft line height]]. | @"<soft-line>"@ Line breaks inside this tag use the [[prop:style:soft line height]].
| @"<atom>"@ An atomic piece of text. The cursor can never be inside it; it is selected as a whole. | @"<atom>"@ An atomic piece of text. The cursor can never be inside it; it is selected as a whole.
...@@ -41,7 +41,7 @@ This is written as the character with code 1 in files. ...@@ -41,7 +41,7 @@ This is written as the character with code 1 in files.
| @"<prefix>"@ At the beginning of a string, indicates a part that can not be selected. This tag is automatically inserted by the [[fun:combined_editor]] function. | @"<prefix>"@ At the beginning of a string, indicates a part that can not be selected. This tag is automatically inserted by the [[fun:combined_editor]] function.
| @"<suffix>"@ At the end of a string, indicates a part that can not be selected. This tag is automatically inserted by the [[fun:combined_editor]] function. | @"<suffix>"@ At the end of a string, indicates a part that can not be selected. This tag is automatically inserted by the [[fun:combined_editor]] function.
| @"<sep-soft>"@ Like @"<sep>"@, only hidden. This is inserted by [[fun:combined_editor]] | @"<sep-soft>"@ Like @"<sep>"@, only hidden. This is inserted by [[fun:combined_editor]]
| @"<soft>"@ Text who's width is ignored for alignment, similair to @"<sep-soft>"@, but not a separator. | @"<soft>"@ Text who's width is ignored for alignment, similar to @"<sep-soft>"@, but not a separator.
| @"<word-list-?>"@ Indicate that the text inside the tag should be selected from a [[type:word list]]. | @"<word-list-?>"@ Indicate that the text inside the tag should be selected from a [[type:word list]].
The <tt>?</tt> must be the name of a word list in the game. The <tt>?</tt> must be the name of a word list in the game.
| any other tag Other tags are ignored. | any other tag Other tags are ignored.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment