How to edit tags in Wiki.js pages? - wiki.js

I have a Wiki.js 2.x server running with PostgreSQL. I'm using default theme.
When creating new page, there is input field for tags, but after creation I couldn't find the place to add/remove tags.
The question: how can I edit tags of my pages ?

You can edit the page (clicking the pencil button). And in the edit page, find the "Page" button at the top-right corner.
That is the place where you can edit the page properties (including tags).

Try disabling mathjax in your config.yml and restart wiki.js

Related

Turn Editing On in Moodle does not show

I have a moodle project and after updating to version 3.9 the turn editing on button is not shown, I can not edit my topics
I'm not familiar with RTL themes in general but is it hidden in the cog menu (top left in your screenshot)?
If not, try the URL of your page, with &edit=on or &edit=off on the end of it - with Boost-based themes you can use the Boost Navigation Fumbling plugin (on the plugins directory) to add these links into your nav drawer for users with elevated access.

Clickable link in active editor

If I add a link to the active editor either by using the menu/context menu or by simply typing a URL (e.g., http://www.google.com), the link is added but it is not immediately clickable. The only way a user can use the link to navigate to a page is by ctrl-clicking and choosing to open in a new tab. If the editor is in read-only mode then it works as intended but not when the editor is active.
Is there a way to make links clickable in an active editor?
thnx,
Christoph
TinyMCE will not (by default) make the link clickable. You can right click on the link and a context menu appears. In that menu is an option to open the link. To modify a link one needs to click on it (select it) in TinyMCE. If that act (clicking) opened the link you would not be able to easily select the link to act upon it in the editor.

How can i hide General tab on media plugin, tinymce

I'm trying to use only embedded code to show videos and disable video upload option from tinymce media plugin. So i need to hide "General" tab on the media dialog.
I saw a similar question is asked in tinymce also but unanswered. Is there someone who has done this?

ckeditor 4, versioning

I would like to know if it is possible give the possibility to load a previous version of the current content through a button in the toolbar.
The different versions of content are stored in a database.
The ideal behavior would be that clicking on the button in the toolbar, a popup dialog opens with a list of previous versions of the content. On click, the selected content is loaded into the editor.
I'm using php and mysql.
You have to implement a custom plugin that by ajax get the versions:
Creating a CKEditor Plugin with a Custom Dialog Window
CKEDITOR Plugin SDK

TinyMce plugin, how to copy 'Link' functionality

I'm creating a new plugin for TinyMce. However I cannot find any examples to see some of the functionality I've seen in other plugins. I've read their source code but I cannot find where it is done:
When you click on an 'A' element, the link/unlink buttons in the taskbar become enabled.
When you right click on an 'A' element, then click on the "Insert/edit link" icon that is shown in the popup menu, the "Insert/edit link" window is setup (has all the attributes for that particular link) prefilled.
Could you suggest somewhere where I could learn how to do this? A file and line number is fine.
Thanks in advance.
Here a part of what you want. To highlight a UI button (link) you may do
tinymce.get(editorid).contentManager.setActive('link', true);
EDIT: For the other functionality have a look at editor_plugin_src.js/editor_plugin.js in the directory tiny_mce\plugins\advlink\. It is only small in size. You will find that a file called link.htm is being called to form the popup. Hope this helps.