Template:cheatsheet-key: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
(table)
Line 1: Line 1:
===Key===
===Key===
Uses standard [http://en.wikipedia.org/wiki/Regular_expression#Basic_concepts quanitification] operators.  
Uses standard [http://en.wikipedia.org/wiki/Regular_expression#Basic_concepts quanitification] operators.  
;'''bold''': Must be present exactly once.
{|
;''italic''<nowiki>*</nowiki>: Match 0 or more times
| '''bold''' || Must be present exactly once
;+: Match 1 or more times
|-
;?: Match 1 or 0 times
| ''italic''<nowiki>*</nowiki> || Match 0 or more times  
;[square brackets]: common list of values
|-
;(parentheses): data format
| + || Match 1 or more times  
|-
| ? || Match 1 or 0 times  
|-
| [square brackets] || list of common values  
|-
| (parentheses) || data format  
|}

Revision as of 00:07, 5 December 2006

Key

Uses standard quanitification operators.

bold Must be present exactly once
italic* Match 0 or more times
+ Match 1 or more times
? Match 1 or 0 times
[square brackets] list of common values
(parentheses) data format