LiveGobe Wiki

LiveGobe Wiki Language

Viewing old revision of LiveGobe_Wiki_Language

You are viewing an old revision of this page from 11/7/2025, 12:21:48 PM.

View latest version
'''LiveGobe Wiki Language (LGWL)''' is a lightweight markup language designed for the [[Main Page|LiveGobe Wiki System]].
It combines the simplicity of Markdown with the power of MediaWiki syntax.

== Overview ==
LGWL aims to make writing content intuitive and readable in plain text while supporting advanced wiki features such as:
* Internal and external links
* Templates
* Categories
* HTML integration
* Syntax highlighting
* Table and list formatting

== Basic Syntax ==

=== Headings ===
Use `=` signs around text to create headings:
```
== Level 1 ==
=== Level 2 ===
```

=== Bold and Italic ===
```
''italic text''  
'''bold text'''  
'''''bold and italic'''''
```

=== Links ===
Internal Links
`{{[}}{{[}}Main Page{{]}}{{]}}` → [[Main Page]]

External Links
`{{[}}https://livegobe.com Visit LiveGobe{{]}}` → [https://livegobe.com Visit LiveGobe]

=== Images ===
Images can be embedded using square brackets or inline HTML:
`{{[}}{{[}}File:Example.png|thumb|right|Example caption{{]}}{{]}}`

=== Templates ===
Templates allow reusable content blocks:
`{{{}}{{{}}Infobox|title=Example{{}}}{{}}}`

=== Categories and Meta tags ===
Add categories at the bottom of a page:
`{{[}}{{[}}Category:Documentation{{]}}{{]}}`
Add meta tags for search engine optimization:
`{{[}}{{[}}Tag:Document{{]}}{{]}}`

== Advanced Features ==

=== HTML Blocks ===
LGWL supports inline HTML for custom layouts and styling:
<nowiki>
<div class="example-box">
Custom styled HTML block.
</div>
</nowiki>

=== Code Blocks ===
Wrap code with <nowiki>`<code>`</nowiki> tags for inline formatting or <nowiki>```<code>```</nowiki> for block formatting:
```js
function hello() {
  return "Hello World!";
}
```
  
=== Tables ===
Use MediaWiki-style table syntax with alignment feature:
<nowiki>
{| class="wiki-table"
! Name !! Description
|-
| :LGWL: || Lightweight markup for wikis:
|-
| :MediaWiki: || Original wiki syntax:
|}
</nowiki>
  
== Philosophy ==
LGWL was built to be:
* '''Readable''' in plain text
* '''Flexible''' for dynamic wiki features
* '''Extensible''' with templates and scripts
* '''Safe''' through HTML sanitization

== See Also ==
* [[Wiki Configuration]]
* [[Template Syntax]]
[[Category:Documentation]]
Last Edited by LiveGobe on 11/7/2025, 12:21:48 PM