Extracted from Dokuwiki syntax documentation for quick reference:
++++Basic Text Formatting|{{section>wiki:syntax#basic_text_formatting&noheader}}++++
++++Footnotes|{{section>wiki:syntax#footnotes&noheader}}++++
++++Quoting|{{section>wiki:syntax#quoting&noheader}}++++
++++No formatting|{{section>wiki:syntax#no_formatting&noheader}}++++
++++Code blocks|{{section>wiki:syntax#code_blocks&noheader}}++++
----
The following table defines the **__binding__** typographic conventions for wiki pages!
^ Item ^ Format ^ Example(s) ^
| References to commands, folder-/filenames, etc. in running text | %%''monospaced''%% | The command ''ptxdist newpackage '' can be used to add your application to the Software Platform configuration. |
| Commands to be entered by the user (verbatim)\\ + output/results of such commands | %%code block
%% |
user@ubuntu-vm:~/workspace/TQMa6x-BSP-REV.0109$ ptxdist newpackage
usage: 'ptxdist newpackage ', where type is:
host create package for development host
target create package for embedded target
cross create cross development package
klibc create package for initramfs built against klibc
src-autoconf-lib create autotoolized library
src-autoconf-prog create autotoolized binary
src-autoconf-proglib create autotoolized binary+library
src-cmake-prog create cmake binary
src-qmake-prog create qmake binary
src-linux-driver create a linux kernel driver
src-make-prog create a plain makefile binary
src-stellaris create stellaris firmware
font create a font package
file create package to install existing files
kernel create package for an extra kernel
barebox create package for an extra barebox
image-tgz create package for a tgz image
image-genimage create package for a genimage image
blspec-entry create package for a bootloader spec entry
user@ubuntu-vm:~/workspace/TQMa6x-BSP-REV.0109$
|
| Contents of files | %%filecontents%% |
#include
#include
int main(int argc, char *argv[])
{
printf("Hello World, I'm hello-world!\n");
exit(EXIT_SUCCESS);
}
user@ubuntu-vm:~/workspace/TQMa6x-BSP-REV.0109$
|