Template:cheatsheet-key: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
===Key===
===Key===
Based on Perl's [http://www.perl.com/doc/manual/html/pod/perlre.html standard quantifiers]:
Fondée sur les [http://www.perl.com/doc/manual/html/pod/perlre.html quantificateurs standards] de Perl :
{| border="1" cellpadding="2"
{| border="1" cellpadding="2"
| '''bold''' {1} || Must be present exactly once
| '''bold''' {1} || Doit être présent exactement une fois
|-  
|-  
| ''italic''<nowiki>*</nowiki> || Match 0 or more times
| ''italic''<nowiki>*</nowiki> || Correspond à 0 ou plus
|-  
|-  
| + || Match 1 or more times  
| + || Match 1 or more times  
Line 10: Line 10:
| ? || Match 1 or 0 times  
| ? || Match 1 or 0 times  
|-  
|-  
| [square brackets] || list of common values
| [crochets rectangulaires] || liste de valeurs communes
|-  
|-  
| (parentheses) || data format  
| (parenthèses) || format de donnée
|-  
|-  
| # || comment
| # || commentaire
|}
|}

Revision as of 06:06, 14 December 2006

Key

Fondée sur les quantificateurs standards de Perl :

bold {1} Doit être présent exactement une fois
italic* Correspond à 0 ou plus
+ Match 1 or more times
? Match 1 or 0 times
[crochets rectangulaires] liste de valeurs communes
(parenthèses) format de donnée
# commentaire