FINALLY! SOME UPDATES! This website is being reconstructed. Some content will go away soon. If you want to see my new stuff, visit my github: https://github.com/jrcharney/.

Leser.js : Rapid Wiki-style markup without the Wiki Software

About this project.

Leser (with one s, German for "reader") is designed to work like MediaWiki's Wiki lanugage, but without the need to use MediaWiki. Unlike MediaWiki's Wiki Syntax, Leser is written in JavaScript (for the moment). Leser is also more rigid, but with a stricter language, more features like being able to execute styles for table columns.

Ideal for note taking and perfect for creating a micro-Wiki of notes for just yourself and no worries about Spammers wrecking anything.

Requirements

Leser requires jQuery.

Bugs

You can't load a file using jQuery's load function and use Leser at the same time. (I'll eventually find a work around this problem.)

Features

  • Process HTML Tables and Lists more rapidly.
  • Use it just like MediaWiki's Wiki language (the exception though is there are no templates...yet.)
  • Eventual integration with Jill.js and LaTeX (and perhaps PostScript.)

Syntax

Leser HTML Description Notes
{|
!|Column A
!|Column B
|-
||Cell 1,1
||Cell 1,2
|-
||Cell 2,1
||Cell 2,2
|}
<table>
 <tr>
  <th>Column A</th>
  <th>Column B</th>
 </tr>
 <tr>
  <td>Cell 1,1</td>
  <td>Cell 1,2</td>
 </tr>
 <tr>
  <td>Cell 2,1</td>
  <td>Cell 2,2</td>
 </tr>
</table>
Compose Tables FASTER!
= Header 1 =
== Header 2 ==
=== Header 3 ===
==== Header 4 ====
===== Header 5 =====
====== Header 6 ======
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
Organize headers with greater organizational visiblity.
* Apples
* Bananas
* Oranges

# Apples
# Bananas
# Oranges

:::Apples
::Bananas
:Oranges

<ul>
 <li>Apples</li>
 <li>Bananas</li>
 <li>Oranges</li>
</ul>

<ol>
 <li>Apples</li>
 <li>Bananas</li>
 <li>Oranges</li>
</ol>

<blockquote>
 <blockquote>
  <blockquote>
   Apples
  </blockquote>
  Bananas
 </blockquote>
 Oranges
<blockquote>


Compose Lists and Blockquote Threads FASTER!

More examples coming soon.

Downloads

Coming Very Soon!

Tags

Under Construction