Can a document render width be adjusted?

Is it possible to remove/adjust the width limitation of documents? I would like my published document to be rendered using more of the horizontal space on my screen.

My version of HedgeDoc is: 1.9.0

What I expected to happen:

N/A

What actually happened:

N/A

I already tried:

  • Googling variations of “hedgedoc width yaml metadata”
  • using slideOptions: width: "100%"

Thanks in advance!

While it’s not intended, one can use the inline CSS with <style></style> to adjust such things. Be aware that this is generally speaking not recommended since it could lead to unexpected other issues.

But other than that, no, there is no such option at this point in time.

I realize this convo is necro’d but my solution is to post the following at the bottom of any page I want to adjust the max-width. (In case someone else is looking for a quick solution)

<style>
.markdown-body {
    max-width: 1150px !important;
<!-- Leave this section to allow enough room to view wider content. (i.e. tables) -->    
</style>
1 Like