Replies: 2 comments 5 replies
-
Nice! I like it! 😊 |
Beta Was this translation helpful? Give feedback.
-
The tab aliases are nice! Any idea how to make it a little more robust? @tabs{
@tab{ General | @code{.bash}sunshine --help@endcode }
@tab{ AppImage | @code{.bash}./sunshine.AppImage --help@endcode }
@tab{ Flatpak | @code{.bash}flatpak run --command=sunshine dev.lizardbyte.app.Sunshine --help@endcode }
} The above works, but the below isn't so nice. @tabs{
@tab{ General |
@code{.bash}
sunshine --help
@endcode
}
@tab{ AppImage |
@code{.bash}
./sunshine.AppImage --help
@endcode
}
@tab{ Flatpak |
@code{.bash}
flatpak run --command=sunshine dev.lizardbyte.app.Sunshine --help
@endcode
}
} P.S. I did something similar to your colored spans as well, you might find interesting. #155 |
Beta Was this translation helpful? Give feedback.
-
Hello, as always thank you for your awesome work, dedication, and time.
Here is something we started doing lately to simplify docs writing. Instead of using HTML directly in markdown (which markdownlints are not a fan of and looks messy), we started creating ALIASES with the HTML. For example:
Tabs
Instead of adding this to the markdown:
We add this to the markdown:
with an alias:
Other Aliases
I think these can make the experience better when writing docs and we can start adding more extensions if we can provide ALIASES to copy-paste. Just a thought :)
Look at my docs here https://support.roboticsys.com/rmp/camming.html#autotoc_md278 to see them render in HTML.
Let me know what you think!
Beta Was this translation helpful? Give feedback.
All reactions