Actions
Syntaxe markdown ++¶
On implémente l'idée détaillée sur https://github.com/brikis98/wmd
Text fields¶
name = ___
<label for="name">Name:</label>
<input type="text" id="name" name="name" size="20"/>
Or:
name = ___[50]
<label for="name">Name:</label>
<input type="text" id="name" name="name" size="50"/>
Exactly 3 underscores will be matched. Any more will be handled as standard underline directives. Default input size is 20.
Radio buttons¶
sex = (x) male () female
<label>Sex:</label>
<input type="radio" name="sex" id="male" value="male" checked="checked"/><label for="male">Male</label>
<input type="radio" name="sex" id="female" value="female"/><label for="female">Female</label>
Check boxes¶
phones = [] Android [x] iPhone [x] Blackberry
<label>Phones:</label>
<input type="checkbox" name="phones" id="Android" value="Android"/><label for="Android">Android</label>
<input type="checkbox" name="phones" id="iPhone" value="iPhone" checked="checked"/><label for="iPhone">iPhone</label>
<input type="checkbox" name="phones" id="Blackberry" value="Blackberry" checked="checked"/><label for="Blackberry">Blackberry</label>
Drop down¶
city = {BOS, SFO, (NYC)}
<label for="city">City:</label>
<select id="city" name="city">
<option value="BOS">BOS</option>
<option value="SFO">SFO</option>
<option value="NYC" selected="selected">NYC</option>
</select>
Or with user-friendly labels:
city = {BOS -> Boston, SFO -> San Francisco, (NYC -> New York City)}
<label for="city">City:</label>
<select id="city" name="city">
<option value="BOS">Boston</option>
<option value="SFO">San Francisco</option>
<option value="NYC" selected="selected">New York City</option>
</select>
Or both:
city = {BOS, SFO, (NYC -> New York City)}
<label for="city">City:</label>
<select id="city" name="city">
<option value="BOS">BOS</option>
<option value="SFO">SFO</option>
<option value="NYC" selected="selected">New York City</option>
</select>
Required fields¶
zip code* = ___
<label for="zip-code" class="required-label">Zip code*:</label>
<input type="text" name="zip-code" id="zip-code" size="20" class="required-input"/>
zip code* = ___[50]
<label for="zip-code" class="required-label">Zip code*:</label>
<input type="text" name="zip-code" id="zip-code" size="50" class="required-input"/>
Mis à jour par Eric Seigne il y a presque 5 ans · 2 révisions
Go to top