-
Notifications
You must be signed in to change notification settings - Fork 2
Wikibreeze Editor Features
Most of these feature configurations are listed under WikibreezeData/config/editorConfig.json
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"
...
}
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"
...
}
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
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.