Skip to content

Commit

Permalink
Rename Wikimedia to Mediawiki
Browse files Browse the repository at this point in the history
Wikimedia is the umbrella project that includes Wikipedia, Wiktionary, etc.
The markup itself is actually called MediaWiki code, or just wikicode,
and it is used by all wikis that are based in the same software,
including many that are not Wikimedia projects.
  • Loading branch information
waldyrious committed Jan 13, 2019
1 parent 64c6a3f commit ad18a7f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ Press **Create Table** to get something like:
| This is a row with only one cell | | | |
```

### Wikimedia markup
### MediaWiki markup

```
{| class="wikitable"
Expand Down Expand Up @@ -223,7 +223,7 @@ Leading characters can be added by selecting a comment style:
| hash | "# " | Perl/PowerShell/Python/R/Ruby |
| doubledash | "-- " | ada/AppleScript/Haskell/Lua/SQL |
| percent | "% " | MATLAB |
| singlespace | " " (1 space) | wikimedia |
| singlespace | " " (1 space) | MediaWiki |
| quadspace | "    " (4 spaces) | reddit |
| singlequote | "' " (single quote) | VBA |
| rem | "REM " | BASIC/DOS batch file |
Expand Down
6 changes: 3 additions & 3 deletions assets/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function createTable() {
prefix = "% ";
break;
case "singlespace":
// wikimedia
// mediawiki
prefix = " ";
break;
case "quadspace":
Expand Down Expand Up @@ -314,8 +314,8 @@ function createTable() {
hdV = "||"; hdH = "";
spV = "| "; spH = "";
break;
case "wikim":
// wikimedia
case "mediawiki":
// mediawiki
hasLineSeparators = true;
hasRightSide = false;
autoFormat = false;
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ <h2>Input</h2>
<option value="dots">ASCII (dots)</option>
<option value="unicode">Unicode</option>
<option value="unicode_single_line">Unicode (single line)</option>
<option value="wikim">Wikimedia</option>
<option value="mediawiki">MediaWiki</option>
<option value="html">HTML</option>
</select>
</label>
Expand All @@ -101,7 +101,7 @@ <h2>Input</h2>
<option value="doubledash">"-- " ada/AppleScript/Haskell/Lua/SQL</option>
<option value="percent">"% " MATLAB </option>
<option value="docblock">" * " Docblock (PHP/Java/JS) </option>
<option value="singlespace">" " (1 space) wikimedia</option>
<option value="singlespace">" " (1 space) MediaWiki</option>
<option value="quadspace">" &nbsp;&nbsp;&nbsp;" (4 spaces) reddit</option>
<option value="singlequote">"' " (single quote) VBA</option>
<option value="rem">"REM " BASIC/DOS batch file</option>
Expand Down

0 comments on commit ad18a7f

Please sign in to comment.