Template:Row numbers/doc: Difference between revisions

From escforumwiki
Jump to navigation Jump to search
en>Trappist the monk
m (→‎top: ce;)
en>Trappist the monk
m (→‎Usage: mw.text.decode() to aggressive;)
Line 37: Line 37:
|_row_count || {{Str left|{{Lorem ipsum}}|123}}
|_row_count || {{Str left|{{Lorem ipsum}}|123}}
|}</nowiki>}}
|}</nowiki>}}
There are further caveats.  When wrapped in {{tag|nowiki}}, the '<code><</code>' and '<code>></code>' characters that begin and end all html-like markup, are replaced with <code>&amp;lt;</code> and <code>&amp;gt;</code> html entities respectively.  Because the Module cannot know if there are html entities already in use before the table was wrapped in the {{tag|nowiki}} tags required here, when the module replaces the html entities with '<code><</code>' and '<code>></code>' characters, something may break. Also, these entitles are replaced with their associated characters: '<code>&amp;amp;</code>', '<code>&amp;quot;</code>', and '<code>&amp;nbsp;</code>'.  {{lang|la|caveat lector}}.
There are further caveats.  When wrapped in {{tag|nowiki}}, the '<code><</code>' and '<code>></code>' characters that begin and end all html-like markup, are replaced with <code>&amp;lt;</code> and <code>&amp;gt;</code> html entities respectively.  Because the Module cannot know if there are html entities already in use before the table was wrapped in the {{tag|nowiki}} tags required here, when the module replaces the html entities with '<code><</code>' and '<code>></code>' characters, something may break. {{lang|la|caveat lector}}.
<includeonly>{{sandbox other||
<includeonly>{{sandbox other||
<!-- Categories below this line, please; interwikis at Wikidata -->
<!-- Categories below this line, please; interwikis at Wikidata -->


}}</includeonly>
}}</includeonly>

Revision as of 12:43, 12 April 2018

This is a stop-gap template that serves as an interface to Module:Row counter.

This template makes it possible, in many cases, to have an incrementing row counter in a table so that adding or removing rows automatically adjusts the numbering of subsequent rows. This template will become obsolete if and when MediaWiki supports automatic row counters in WikiTable syntax.

Usage

This template takes one parameter: the table. There is a caveat: the table must be wrapped inside <nowiki>...</nowiki> tags so that all of the pipe characters (|) required in a wiki table do not confuse the template into thinking that they are all individual template parameters. Internally, the Module maintains a monotonically increasing counter. The Module looks for the keyword _row_count in the table and replaces the keyword with the next value from the counter.

{{row counter|
<nowiki>{| class="wikitable"
|+test incrementor
!count !! lorem
|-
|_row_count || {{Str left|{{Lorem ipsum}}|123}}
|-
|_row_count || {{Str left|{{Lorem ipsum}}|27}}
|-
|_row_count || {{Str left|{{Lorem ipsum}}|5}}
|-
|_row_count || {{Str left|{{Lorem ipsum}}|11}}
|-
|_row_count || {{Str left|{{Lorem ipsum}}|123}}
|}</nowiki>}}

Template:Row counter There are further caveats. When wrapped in <nowiki>...</nowiki>, the '<' and '>' characters that begin and end all html-like markup, are replaced with &lt; and &gt; html entities respectively. Because the Module cannot know if there are html entities already in use before the table was wrapped in the <nowiki>...</nowiki> tags required here, when the module replaces the html entities with '<' and '>' characters, something may break. caveat lector.