Varia's website, varia.zone or vvvvvvaria.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mb@mb 04c2824180 adding the 2 submodules again 6 years ago
..
Readme.rst adding the 2 submodules again 6 years ago
__init__.py adding the 2 submodules again 6 years ago
html_rst_directive.py adding the 2 submodules again 6 years ago

Readme.rst

HTML tags for reStructuredText
------------------------------

This plugin allows you to use HTML tags from within reST documents.


Directives
----------


::

.. html::

(HTML code)


Example
-------

A search engine::

.. html::

<form action="http://seeks.fr/search" method="GET">
<input type="text" value="Pelican v2" title="Search" maxlength="2048" name="q" autocomplete="on" />
<input type="hidden" name="lang" value="en" />
<input type="submit" value="Seeks !" id="search_button" />
</form>


A contact form::

.. html::

<form method="GET" action="mailto:some email">
<p>
<input type="text" placeholder="Subject" name="subject">
<br />
<textarea name="body" placeholder="Message">
</textarea>
<br />
<input type="reset"><input type="submit">
</p>
</form>