HTMLSyntax

Bitweaver's HTML input format parser for content

Created by: Kozuch, Last modification: 08 Jan 2009 (06:38 UTC) by laetzer

HTML Format


If the content format of your site or of a single page is set to HTML format, and HTML input is allowed, you can style and structure your content with the web's hypertext markup language. HTLM is one of various LibertyFormats Bitweaver offers. For any content format, data plugins let you include images, attachments, tabs, modules and other functionality. Enabling (and forcing) HTML for the entire Bitweaver install is recommended when a rich text editor like FCKeditorPackage or TinyMCEPackage is activated.

Data plugins

When the input format is HTML, and even when a rich text editor is active, List of Plugins can be used just like in a simple text-based format like Wiki Syntax. For instance:

including an attachment


<?php
{attachment id=111}
?>


Table of contents

In the same way, a table of contents can be included, generated from the headings of a page. If enabled in Admin > Liberty > Formats, it works just like it would in a simple text-based format like Wiki Syntax.

include a toc


<?php
{maketoc}
?>


If WikiLinks (filterbitlinks) is enabled in Admin > Liberty, links of the following format can be used. The following example will be converted to a link to a page named "My Wiki Page". The link text can also be changed.

linking to another wiki page


<?php
((My Wiki Page))
((
My Wiki Page|click here to go to my page))
?>