Skip to content

Wikibreeze Editor Features

950288 edited this page Jul 5, 2023 · 15 revisions

Most of these feature configurations are listed under WikibreezeData/config/editorConfig.json

Preview

Table with note

This feature enable users to insert a table with note. you can enable this feature by modifying these two cofigure on WikibreezeData/config/editorConfig.json.

"otherConfigurations":{
    ...
    "tablePro": "true",
    "tableMustContainNote": "false"
    ...
}

Image with note

This feature enable users to insert a picture with note. you can enable this feature by modifying these two cofigure on WikibreezeData/config/editorConfig.json.

"otherConfigurations":{
    ...
    "imagePro": "true",
    "imageMustContainNote": "false"
    ...
}

Customize the HTML

This feature allows you to customize the tag names of HTML elements. For example, you can rename the <s> tag to <strong>.

You can configure custom tag names by modifying the "tag" properties in WikibreezeData/config/editorConfig.json. For example:

"bold ": {
    "HTMLAttributes": {},  
    "tag": "strong"
}

This allows flexible customization of HTML markup.

The following option names can be modified

paragraph
heading
bold
italic
link
bulletList
listItem 
code      
image  
table  
underline
codeBlock
subscript  
superscript
imagePro      //image with a note
tablePro      //table with a note
hardBreak 
strike    

upload image to iGEM server (since v1.1.0)

now all user can upload pictures in the editor. To enable this feature, you should update WikibreezeData/config/config.json with following:

{
    .....,
    "uploadImage": "true"
}

then start the WikiBreeze. For the first time you need to input your iGEM username and password.