-
Notifications
You must be signed in to change notification settings - Fork 0
Vorlage
==========================================================================================================
Images are referenced by an absolute URL https://raw.githubusercontent.com/wiki/...
Figure 4: Basic directory structure for a MMIR application
==========================================================================================================
References to other sections are done by an absolute URL https://github.com/mmig/mmir/wiki/...
- With markdown syntax
see section Application State Definitions
...renders to:<br>
see section [Application State Definitions](https://github.com/mmig/mmir/wiki/3.4-Application-State-Definitions)
* With HTML syntax
```
cf. section <a href="https://github.com/mmig/mmir/wiki/4.3-Building-MMIR-StarterKit">Building MMIR StarterKit</a>
...renders to:
cf. section Building MMIR StarterKit
==========================================================================================================
|Description|Example
---|---|---
[controller name]|the controller’s class name|CalendarExample
\controllers[controller name].js|File name for controller implementation|calendarExample.js
\views[controller name][view name].ehtml|A view definition for the controller|calendarExample\main.ehtml
\views\layouts[controller name].ehtml|Layout definition for the controller’s views|calendarExample.ehtml
TABLE 4: Basic directory structure for a MMIR application
==========================================================================================================
WARNINGTEXT Row 1
WARNINGTEXT Row 2
WARNINGTEXT Row 3
==========================================================================================================
-
configuration.json
: This is a well-formatted JSON file, which contains the main configuration of MMIR application. For example to specify the default language of your application as German add the following line to configuration.json :
"language": "de"
By convention, languages should be referred to by their 2-letter language code [ [3] ](#fn3), e.g. use `en` for English.
==========================================================================================================
# Checkmark Symbols (yes | no)
---
Symbol | Unicode
---|---
✓ yes| `✓`
✗ no | `✗`
==========================================================================================================
# Footnotes
Footnotes use a symbol (see table below) and a within-page-link:
by convention the link starts with `fn-...` followed by a descriptive name (should be unique across the site!);
individual words within the name are separated by `-`. The _back-links_ have the same name, with the
`-backlink` post-pended: `fn-the-name` → `fn-the-name-backlink`.
1. This is a Footnote <a name="fn-footnote-test-backlink">[ [∗]](#fn-footnote-test)</a>
including "backlinking" from the footnote.
```html
This is a Footnote <a name="fn-footnote-test-backlink">[ [∗]](#fn-footnote-test)</a>
including "backlinking" from the footnote.
-
This is one [†] inside a html block.
This is one [†] inside a html block.
3. And another one <a name="fn-another-footnote-test-backlink">[ [∞]](#fn3)</a>.
```html
And another one <a name="fn-another-footnote-test-backlink">[ [∞]](#fn3)</a>.
... and these are the actual footnotes, placed at the very bottom of the text/page:
----
_<a name="fn-footnote-test" href="#fn-footnote-test-backlink">[∗]</a>
The Apache Cordova project was started off with the donation of code from PhoneGap.
Now PhoneGap is a distribution using the Open Source code base of Cordova._
_<a name="fn-html-footnote" href="#fn-html-footnote-backlink">[†]</a>
Source: http://phonegap.com/about/feature/_
_<a name="fn-another-footnote-test" href="#fn-another-footnote-test-backlink">[∞]</a>
see ISO 639-1 specifiaction_
renders to:
[∗] The Apache Cordova project was started off with the donation of code from PhoneGap. Now PhoneGap is a distribution using the Open Source code base of Cordova.
[†] Source: http://phonegap.com/about/feature/
[∞] see ISO 639-1 specifiaction
Symbol (HTML) | Symbol (Unicode) |
---|---|
∗ ∗
|
∗ ∗
|
† †
|
† †
|
‡ ‡
|
‡ ‡
|
∞ ∞
|
∞ ∞
|
⊗ ⊗
|
⊗ ⊗
|
⊥ ⊥
|
⊥ ⊥
|
¥ ¥
|
¥ ¥
|
Θ Θ
|
Θ Θ
|
◊ ◊
|
◊ ◊
|
♠ ♠
|
♠ ♠
|
♣ ♣
|
♣ ♣
|
♥ ♥
|
♥ ♥
|
♦ ♦
|
♦ ♦
|
==========================================================================================================
This is a Footnote [∗] .
This is one [†] inside a html block.
And another one [∞] .
Footnote | Description |
---|---|
[∗] | The Apache Cordova project was started off with the donation of code from PhoneGap. Now PhoneGap is a distribution using the Open Source code base of Cordova. |
[†] | Source: http://phonegap.com/about/feature/ |
[∞] | see ISO 639-1 specifiaction |
========================================================================================================== |
- 1 Introduction
- 2 What is MMIR
- 3 MMIR Project Structure
- 4 Getting started