Skip to content

Commit

Permalink
1.0 -> 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MatiDragon-YT committed Dec 19, 2021
1 parent 628ba7b commit fe3833e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions en/coding/classes.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
Syntax:\
`<Class name>.<Class member>(parameters)`

| `Class name` - the name of a group of commands defined in the `classes.db` file for this edit mode.
| `Class member` - one of the commands included in the class.
| `Parameters` - 0 or more comma-delimited [parameters](data-types.md)
> `Class name` - the name of a group of commands defined in the `classes.db` file for this edit mode.
> `Class member` - one of the commands included in the class.
> `Parameters` - 0 or more comma-delimited [parameters](data-types.md)

```sb3
Player.SetMinWantedLevel($PLAYER_CHAR, 2)
Expand Down
4 changes: 2 additions & 2 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// GLOBAL VERSION OF THE CHM
const VERSION = "1.0";
const VERSION = "1.1";

// GLOBAL VARS
const d = document;
Expand Down Expand Up @@ -81,7 +81,7 @@ $('.markdown').innerHTML = $('.markdown').innerHTML
.replace(/{% hint style="(\w+)" %}/g, '<div class=$1>')
.replace(/{% endhint %}/g, '</div>')
/*** CITE ***/
.replace(/^(\||&gt;)\s(.+)/gim, '<blockquote>$2</blockquote>')
.replace(/^&gt;\s(.+)/gim, '<blockquote>$1</blockquote>')
.replace(/<\/blockquote>(\s+)<blockquote>/g, '<br>')
/*** FORMAT ***/
.replace(/(\s|\(|>)\*\*\*([\x20-\x29\x2B-\xFF]+)\*\*\*/g, '$1<b><i>$2</i></b>')
Expand Down
2 changes: 1 addition & 1 deletion js/main.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fe3833e

Please sign in to comment.