BookStack for IT Documentation
-
@JaredBusch
That's an awesome way of using bookstack. -
First Example entered by my coworker
-
@jaredbusch Nice!
I really like being able to copy and paste images
-
someone add tags
-
@aaronstuder said in BookStack for IT Documentation:
@jaredbusch Nice!
I really like being able to copy and paste images
You can copy and paste images in there?
-
Can you control who has access to what?
-
@tim_g said in BookStack for IT Documentation:
Can you control who has access to what?
I remember that you can create roles and set permissions to books, chapters, and pages.
-
@black3dynamite said in BookStack for IT Documentation:
@tim_g said in BookStack for IT Documentation:
Can you control who has access to what?
I remember that you can create roles and set permissions to books, chapters, and pages.
Does it have a built in user permission control or does it need local users?
-
@tim_g said in BookStack for IT Documentation:
@black3dynamite said in BookStack for IT Documentation:
@tim_g said in BookStack for IT Documentation:
Can you control who has access to what?
I remember that you can create roles and set permissions to books, chapters, and pages.
Does it have a built in user permission control or does it need local users?
-
# General auth AUTH_METHOD=standard # Social Authentication information. Defaults as off. GITHUB_APP_ID=false GITHUB_APP_SECRET=false GOOGLE_APP_ID=false GOOGLE_APP_SECRET=false OKTA_BASE_URL=false OKTA_APP_ID=false OKTA_APP_SECRET=false TWITCH_APP_ID=false TWITCH_APP_SECRET=false GITLAB_APP_ID=false GITLAB_APP_SECRET=false GITLAB_BASE_URI=false # External services such as Gravatar and Draw.IO DISABLE_EXTERNAL_SERVICES=false # LDAP Settings LDAP_SERVER=false LDAP_BASE_DN=false LDAP_DN=false LDAP_PASS=false LDAP_USER_FILTER=false LDAP_VERSION=false
-
@tim_g Correct.
-
Is there a way to stop showing previews?
Is there a way to collapse text in Bookstack using markdown? -
Is anyone actually using this?
-
@stacksofplates said in BookStack for IT Documentation:
Is anyone actually using this?
I think JB is due to some clients needing a WYSIWYG editor.
-
@stacksofplates said in BookStack for IT Documentation:
Is anyone actually using this?
I've fully transitioned to this for the same reasons @JaredBusch did. Easier for users.
-
@black3dynamite said in BookStack for IT Documentation:
Is there a way to stop showing previews?
Is there a way to collapse text in Bookstack using markdown?Never looked.
I do not know of any markdown commands to do that. -
@nashbrydges said in BookStack for IT Documentation:
@stacksofplates said in BookStack for IT Documentation:
Is anyone actually using this?
I've fully transitioned to this for the same reasons @JaredBusch did. Easier for users.
Oh ok. Ya if you need users to do something then that makes sense.
-
@jaredbusch said in BookStack for IT Documentation:
@black3dynamite said in BookStack for IT Documentation:
Is there a way to stop showing previews?
Is there a way to collapse text in Bookstack using markdown?Never looked.
I do not know of any markdown commands to do that.When using
WYSIWYG
for your page editor, click on source code
and add this code. It also works when usingMarkdown
too.## collapsible markdown? <details><summary>CLICK ME</summary> <p> Hello World </p> </details>
Source: https://gist.github.com/joyrexus/16041f2426450e73f5df9391f7f7ae5f#collapsible-markdown
-
Does that work here?
Collapse test:
<details>
<summary>CLICK ME</summary>
<p>
Hello World
</p>
</details> -
Nope.