Recent changes
Slingshot user guide
tag Guide, user
NFCLamp user guide
tag Guide, user
Homepage
MPL115A2
Compiler Error 42
From the mbed microcontroller Cookbook.  

Wiki Syntax

The mbed wiki syntax is a plain text markup based on the standardised Creole wiki markup, with some enhancements we find useful.

Text and Paragraphs

This is a first sentence. 
And a second.

And a third.

This is a first sentence. And a second.

And a third.

forced\\linebreak

forced
linebreak

Headings

= Heading 1 =
== Heading 2 ==
=== Heading 3 ===

Heading 1

Heading 2

Heading 3

Styles

**bold text**, //italic//, __underline__, --stroke--, ^^superscript^^, ,,subscript,,, ##monospace##

bold, italic, underline, stroke, superscript, subscript, monospace

**//bold italic//**, **##bold monospaced##**

bold italic, bold monospaced

Alignment

Text floated to the right

<<float side=right>>
Text floated to the right
<</float>>

Lists

* List Item 1
* List Item 2
** List Item 2.1
* List Item 3
# Ordered Item 1
## Ordered Item 1.1
## Ordered Item 1.2 
### Ordered Item 1.2.1
# Ordered Item 2
  1. Ordered Item 1
    1. Ordered Item 1.1
    2. Ordered Item 1.2
      1. Ordered Item 1.2.1
  2. Ordered Item 2

Links

 * [[Wiki Syntax]]
 * [[/handbook/SPI]]
 * [[http://mbed.org]]
 * [[/media/uploads/simon/helloworld_lpc1768.bin]] 
 * [[/handbook/SPI|SPI Handbook Page]]

Images

{{URL|description|width|height}}

{{/media/uploads/simon/mbed.gif}} 
{{/media/uploads/simon/mbed.gif|mbed Logo}}
{{/media/uploads/simon/mbed.gif|mbed Logo|200}}
{{/media/uploads/simon/mbed.gif|mbed Logo|200|100}} 

/media/uploads/simon/mbed.gif mbed Logo mbed Logo mbed Logo

Image Links

[[http://mbed.org|{{/media/uploads/simon/mbed.gif}}]]
[[http://mbed.org|{{/media/uploads/simon/mbed.gif|mbed Website}}]]

/media/uploads/simon/mbed.gif mbed Website

Videos

{{http://www.youtube.com/watch?v=Y6kECR7T4LY}}

Tables

|=Column 1 |=Column 2 |=Column 3 |
|Some text | in a     | table    |
Column 1Column 2Column 3
Some textin atable

Code

<<code>>
int max(int x, int y) {
    return (x > y) ? x : y;
}
<</code>>

Code

int max(int x, int y) {
    return (x > y) ? x : y;
}
<<code main.cpp>>
#include "mbed.h"

int main() {
    printf("Hello World!\n");
}
<</code>>

main.cpp

#include "mbed.h"

int main() {
    printf("Hello World!\n");
}

Quotes

<<quote>>
This is something very interesting...
<</quote>>

Quote:

This is something very interesting...

<<quote simon>>
This is something simon said...
<</quote>>

user Simon Ford wrote:

This is something simon said...

Programs

You can embed a published program in a wikipage:

<<program http://mbed.org/users/shintamainjp/programs/SG12864A/60ah4/>>

» Import this programSG12864A

You can also link to a specific item of documentation about a program:

<<program http://mbed.org/users/shintamainjp/programs/SG12864A/60ah4/docs/classSG12864A.html>>

» Import this program

Public Member Functions

void reset (void)
void clear (void)
void setDisplayOnOff (Target t, bool on)
void setDisplayStartLine (Target t, uint8_t displayStartLine)
void setPageAddress (Target t, uint8_t addr)
void setColumnAddress (Target t, uint8_t addr)
void readStatus (Target t, uint8_t *c)
void writeData (Target t, uint8_t c)
void readData (Target t, uint8_t *c)

Flashboxes

Flashbox types: info, help, error, warning, success, note

<<info>>
This is something that might be useful...
<</info>>

Information

This is something that might be useful...

<<warning title="Troubleshooting!">>
Some help with troubleshooting
<</warning>>

Troubleshooting!

Some help with troubleshooting

Escaping Markup

{{{
plain text <<code>>

not **formatted** by the wiki engine
}}}
plain text <<code>>

not **formatted** by the wiki engine
~# hello

# hello

<<comment>>
something not rendered in the output
<</comment>>

(nothing!)




calendar Page history
Last modified 15 Dec 2010, by   user Dan Ros   tag syntax, wiki | 3 comments  

3 comments on Wiki Syntax:

27 Dec 2010

Putting a warning block in my library description makes the warning block tags (and text) show up in the library block when the library is listed in a notebook page.

Notebook Page

» Import this library into a programuOLED

Heavily documented control library for the uOLED-96-G1 (SGC) by 4D Systems. Will likely work with any of the 4D Systems serial controlled screens. <<info>> All examples in the documentation have been tested to the best of my current abilities, but there are a few functions that I simply do not use. I have created a Lighthouse page for this library. You may submit bug reports or feature requests to [[http://mbed-uoled.lighthouseapp.com|this page]]. If you really do not wish to sign up for a Lighthouse account you may also post any bugs or requests [[/users/Nakor/notebook/uoled-bug-reports/|here]]. <</info>>

27 Dec 2010

Thanks! Noted...

22 Jul 2011

/media/uploads/jnesystech/--.png

Please login to post comments.