The mbed wiki syntax is a plain text markup based on the standardised Creole wiki markup, with some enhancements we find useful.
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
= Heading 1 = == Heading 2 == === Heading 3 ===
**bold text**, //italic//, __underline__, --stroke--, ^^superscript^^, ,,subscript,,, ##monospace##
bold, italic, underline, stroke, superscript, subscript, monospace
**//bold italic//**, **##bold monospaced##**
bold italic, bold monospaced
Text floated to the right
<<float side=right>> Text floated to the right <</float>>
* 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
* [[Wiki Syntax]] * [[/handbook/SPI]] * [[http://mbed.org]] * [[/media/uploads/simon/helloworld_lpc1768.bin]] * [[/handbook/SPI|SPI Handbook Page]]
{{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}}

[[http://mbed.org|{{/media/uploads/simon/mbed.gif}}]]
[[http://mbed.org|{{/media/uploads/simon/mbed.gif|mbed Website}}]]
{{http://www.youtube.com/watch?v=Y6kECR7T4LY}}
|=Column 1 |=Column 2 |=Column 3 | |Some text | in a | table |
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Some text | in a | table |
<<code>>
int max(int x, int y) {
return (x > y) ? x : y;
}
<</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>>
#include "mbed.h"
int main() {
printf("Hello World!\n");
}
<<quote>> This is something very interesting... <</quote>>
This is something very interesting...
<<quote simon>> This is something simon said... <</quote>>
This is something simon said...
You can embed a published program in a wikipage:
<<program http://mbed.org/users/shintamainjp/programs/SG12864A/60ah4/>>
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>>
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) |
Flashbox types: info, help, error, warning, success, note
<<info>> This is something that might be useful... <</info>>
This is something that might be useful...
<<warning title="Troubleshooting!">> Some help with troubleshooting <</warning>>
Some help with troubleshooting
{{{
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!)
Please login to post comments.
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>>
Library published 09 Jan 2011 by
Aaron Goselin