
This is a personal project created specifically for Eric to use for testing ideas for Geni project formatting without having to (temporarily) edit an actual Geni project that people are following. It may include wikicode that is not currently functioning or functioning as expected.
Working Wikicode
Wikicode that works but is not in the [//www.geni.com/help/wikitext basic "Wikitext formatting" popup].
Indents
>
indent1
>>
indent2
>>>
indent 3
<span> Tag
<span style="font-size:18px;line-height:2em;">example</span>
example
<span style="font-size:60%">example</span>
example
Using <span> to Create "Anchors" for Internal Page Links
Create an anchor within a page using <span> and the "id" attribute:
<span id="id-test">example</span>
That is an example of an anchor created on the word "example" with the id of "id-test"
Here is a link to the "example" above. The link was created with:
[https://www.geni.com/projects/Eric-s-Project-Sandbox/38185#id-test Here is a link]
Note: The ID attribute can be used to create a table of contents, but the link has to be fully qualified with the whole page URL, not relative. It's not ideal, but it works.
Not Working Wikicode
Wikicode that doesn't work the way it does at Wikipedia.
Table
|= |= table |= header |
| a | table | row |
| b | table | row |
|= |= table |= header | | a | table | row | | b | table | row |
<DIV> Tag
<div class="center" style="width: auto; margin-left: auto; margin-right: auto;">Centered text</div>
<div class="center" style="width: auto; margin-left: auto; margin-right: auto;">Centered text</div>