Last modified by chrisby on 2024/03/30 17:19

From version 1.7
edited by chrisby
on 2023/10/01 13:44
Change comment: Update property syntax
To version 3.4
edited by chrisby
on 2023/10/02 20:28
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -12,14 +12,6 @@
12 12   * At the bottom of the Menu page: Menu Display Location = After the page header; Menu Visibility Scope = Global.
13 13  * Adapt navigation panel items to your needs (the boxes at the edges like "Navigation" or "Recently Created")
14 14   * Look & Feel > Panels > Panel List
15 -* Adapt the footer - Hide XWiki version and add copyright information.
16 - * Look & Feel > Presentation > Footer > Here you can find the fields "Copyright" and "Version".
17 - * Since an empty "Version" field results in the current XWiki version being displayed, I left the "Copyright" field empty and entered the license in the "Version" field. Here are two examples:
18 -
19 - The contents of this website are available under the <a style="text-decoration:underline;" href="https://creativecommons.org/publicdomain/zero/1.0/deed.en">CC0 1.0 Universal license</a>; additional terms may apply.
20 -
21 - The contents of this website are available under the <a style="text-decoration:underline;" href="https://creativecommons.org/licenses/by/4.0/">Attribution 4.0 International</a>; additional terms may apply.
22 -
23 23  * Change browser tab title:
24 24   * Look & Feel > Presentation > Header > Title > Remove the " - XWiki"
25 25   * Change favicon: Look & Feel > Themes > Skin > Customize > Edit > Logo > Choose Attachment > Browse > Select the image you want to have as a favicon. Make sure that the name of the image matches the names mentioned in the [documentation](http://sandbox.xwiki.org/xwiki/bin/view/FAQ/How+do+I+add+a+favicon+for+my+wiki). For example, svg files must be named "icons.xwiki.favicon.svg". > Upload and select image > Save & View
... ... @@ -36,3 +36,21 @@
36 36   * Users & Rights > Registration > User Email verification > Yes
37 37  * Adapt the timezone:
38 38   * Content > Localization > Date/Time > Timezone
31 +* Use Markdown as page editing syntax:
32 + * Extensions > Extensions > Install CommonMark Markdown Syntax 1.2.
33 + * Edit > Syntax > Disabled syntaxes
34 + * Enable "CommonMark Markdown 1.2
35 + * Uncheck "XWiki 2.1
36 + * Saving
37 + * Newly created articles automatically use Markdown syntax by default. When editing, simply click the "Source" button to open the Markdown source editor.
38 + * Old articles will still use the previous default syntax, such as "XWiki 2.1" syntax. However, you can migrate old pages from the old syntax to the new syntax:
39 + * Go to the page to edit > Information > SYNTAX > click the "Edit" icon > select "CommonMark Markdown 1.2". > A "Syntax Conversion" popup appears - click "Yes" > click the "Confirm" icon. You should now be able to edit the page in Markdown.
40 + * Sometimes manual adjustments are required after conversion, as it does not always work as desired.
41 +* Adapt the footer - Hide XWiki version and add copyright information.
42 + * Look & Feel > Presentation > Footer > Here you can find the fields "Copyright" and "Version".
43 + * Since an empty "Version" field results in the current XWiki version being displayed, I left the "Copyright" field empty and entered the license in the "Version" field. Here are two examples when using Markdown syntax as described above:
44 +
45 +```
46 +The contents of this website are available under the [CC0 1.0 Universal license](https://creativecommons.org/publicdomain/zero/1.0/deed.en); additional terms may apply.
47 +The contents of this website are available under the [Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/); additional terms may apply.
48 +```