Difference between revisions of "Contributing"

From RunWiki
Jump to: navigation, search
Line 3: Line 3:
 
= Know Wiki bugs =
 
= Know Wiki bugs =
 
== Don't use the "code" format of the "Edit" mode ==
 
== Don't use the "code" format of the "Edit" mode ==
We finally managed to make the code highlighting work, but don't use the "code" format of the text editor ("edit" button) because I have a bug where it breaks the formatting in the editor after that. So you have to use the "edit source" if you want to add colored code, then you just use the syntaxhighlight tags like this:
+
We finally managed to make the code highlighting work, but don't use the "code" format of the text editor (the editor that opens when you click the "edit" button) because we have a bug where it breaks the formatting in the editor after that. So you have to use the "edit source" if you want to add colored code, then you just use the syntaxhighlight tags like this:
  
 
<pre>
 
<pre>

Revision as of 03:31, 14 December 2022

What to do

Please refer to this page that tracks the progress to check the current progress and know where to contribute.

Know Wiki bugs

Don't use the "code" format of the "Edit" mode

We finally managed to make the code highlighting work, but don't use the "code" format of the text editor (the editor that opens when you click the "edit" button) because we have a bug where it breaks the formatting in the editor after that. So you have to use the "edit source" if you want to add colored code, then you just use the syntaxhighlight tags like this:

<syntaxhighlight lang="javascript">
    class MyClass extends Jig {
        init() {}
    }
</syntaxhighlight>