v50 Steam/Premium information for editors
  • v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
  • Use this page to report any issues related to the migration.
This notice may be cached—the current version can be found here.

Difference between revisions of "Template:Token/doc"

From Dwarf Fortress Wiki
Jump to navigation Jump to search
m (nowiki)
(moved non-template stuff to doc, corrected argument in ex. text)
Line 1: Line 1:
 
== Usage ==
 
== Usage ==
 
  {{<nowiki/>token| TOKEN | token type | ''arguments (optional)'' }}
 
  {{<nowiki/>token| TOKEN | token type | ''arguments (optional)'' }}
 +
 +
==Examples==
 +
<pre>
 +
*{{token|ATTACK|am}} (ammo)
 +
*{{token|ARMORLEVEL|ar}} (armor)
 +
*{{token|SPEED|c}} (creature)
 +
*{{token|MANNERISM_EYE}} (token type not defined, guesses mannerism)
 +
*{{token|NAME|c|cat:cats:cat}}
 +
</pre>
 +
 +
*{{token|ATTACK|am}} (ammo)
 +
*{{token|ARMORLEVEL|ar}} (armor)
 +
*{{token|SPEED|c}} (creature)
 +
*{{token|MANNERISM_EYE}} (token type not defined, guesses mannerism)
 +
*{{token|NAME|c|cat:cats:cat}}
 +
 +
==To do==
 +
* Add {{tl|text anchor}} to token tables (JS):
 +
:<pre style="white-space:pre-wrap">$('#wpTextbox1').val($('#wpTextbox1').val().replace(/\|-\s*\n\|\s*([A-Z_]+)\s*\n/g, function(m, a){return '|-\n| {{text anchor|'+a+'}}\n'}));</pre>
 +
:To check for missed rows:
 +
:<pre>$('#wikiPreview tr').has('.text-anchor').hide()</pre>

Revision as of 11:56, 10 October 2021

Usage

{{token| TOKEN | token type | arguments (optional) }}

Examples

*{{token|ATTACK|am}} (ammo)
*{{token|ARMORLEVEL|ar}} (armor)
*{{token|SPEED|c}} (creature)
*{{token|MANNERISM_EYE}} (token type not defined, guesses mannerism)
*{{token|NAME|c|cat:cats:cat}}

To do

$('#wpTextbox1').val($('#wpTextbox1').val().replace(/\|-\s*\n\|\s*([A-Z_]+)\s*\n/g, function(m, a){return '|-\n| {{text anchor|'+a+'}}\n'}));
To check for missed rows:
$('#wikiPreview tr').has('.text-anchor').hide()