Daily updates from Odoo
Thursday, September 1, 2022
1 change
New functionality added to Odoo
Knowledge users can now insert automatic lists of child articles directly into an article, making related content easier to navigate. These lists show either direct child articles or the full article hierarchy, include clickable links, and can be refreshed when the structure changes.
Original PR description
This commit introduces commands to add your children articles' structure into your article body field through the editor. It is composed of 2 different editor commands: - /articles_structure that will only list direct children of this article - /articles_index that will list ALL children of this article The rendered layout is a simple ol/li list that gives a hierarchical view of the children articles, with clickable names that send the user to the corresponding article. It can be refreshed using a 'Update' button in our special "Knowledge Toolbar" implementation. The blocks created by those commands are currently NOT editable since that would cause issues with the way we build links. Indeed, they are themselves non-editable because they cannot be manually "reproduced" using native editor commands (such as /link or /article). Further improvements may come later to allow end-users to edit these blocks. Task-2818474