Help:Editing: Difference between revisions

From ASCEND
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
This wiki makes use of the MediaWiki software, which is the same software as is used to power the all-knowing Wikipedia website. For an overview of the syntax that you can use, see [http://meta.wikimedia.org/wiki/Help:Editing Help:Editing on the meta.wikimedia.org site].
This wiki makes use of the MediaWiki software, which is the same software as is used to power the all-knowing Wikipedia website. For an overview of the syntax that you can use, see [http://meta.wikimedia.org/wiki/Help:Editing Help:Editing on the meta.wikimedia.org site].


If you want to create a table on your page, see [http://meta.wikimedia.org/wiki/Help:Table here].
Some specific areas including MediaWiki plugins ('extensions') that we have installed:
 
In addition to the standard MediaWiki syntax, we have additionally included plugin support for:


== Code highlighting ==
== Code highlighting ==
Line 59: Line 57:


A tutorial on the use of images is [http://en.wikipedia.org/wiki/Wikipedia:Picture_tutorial here].
A tutorial on the use of images is [http://en.wikipedia.org/wiki/Wikipedia:Picture_tutorial here].
== Tables ==
If you want to create a table on your page, see [http://meta.wikimedia.org/wiki/Help:Table here].

Revision as of 01:25, 17 May 2011

This wiki makes use of the MediaWiki software, which is the same software as is used to power the all-knowing Wikipedia website. For an overview of the syntax that you can use, see Help:Editing on the meta.wikimedia.org site.

Some specific areas including MediaWiki plugins ('extensions') that we have installed:

Code highlighting

We are using the ASHighlight extension (that we wrote ourselves, making use of Andre Simon's highlight program inside):

<source lang=a4c>
MODEL mymodel;
    x IS_A length;
END model;
</source>

MODEL mymodel;
    x IS_A length;
END model;
<source lang=c>
int main(void);
    fprintf(stderr,"hello world!\n");
    exit(0);
}
</source>
int main(void);
    fprintf(stderr,"hello world!\n");
    exit(0);
}

References

You can use <ref> tags in our wiki. Please see documentation and plugin details.

Steel is very strong<ref>Ashby & Jones 
''Engineering Materials 1'', Pergamon,
1980</ref> and so we make things out of it.

<references/>
Steel is very strong[1] and so we make things out of it.
  1. Ashby & Jones Engineering Materials 1, Pergamon, 1980

Images

You can upload images of various types to our wiki, and display them in your pages. We suggest PNG images in most cases, although SVG images are also appropriate for primarily vector graphics.

A tutorial on the use of images is here.

Tables

If you want to create a table on your page, see here.