mkdocs / mkdocs-bootswatch

MkDocs Bootswatch Themes
http://mkdocs.github.io/mkdocs-bootswatch
BSD 2-Clause "Simplified" License
144 stars 60 forks source link

UI horizontal scroll #25

Closed hishamkaram closed 7 years ago

hishamkaram commented 7 years ago

screenshot from 2017-02-23 13-43-06

juzraai commented 7 years ago

Maybe you can use one fenced code block instead of those list of inline code snippets. Code blocks have their own horizontal scrollbar so they won't screw up the page structure.

Also you can use line breaks in those commands to make them shorter.

Example:

cmd1 arg1
cmd2 \
   arg1 \
   arg2
cmd 3

Plus, this way all commands can be copied at once - while those $-prefixed lines aren't. ;)

hishamkaram commented 7 years ago

@juzraai Thank you