ckRobinson / multi-column-markdown

A plugin for the Obsidian markdown note application, adding functionality to render markdown documents with multiple columns of text.
GNU General Public License v3.0
298 stars 13 forks source link

Need more doc #80

Closed Larry-Louis closed 1 year ago

Larry-Louis commented 1 year ago

How to make Region Settings work? Can someone give a 2 col with 30% width and 70% width code example?

ckRobinson commented 1 year ago

```start-multi-column\ Number of Columns: 2\ Column Size: [30%, 70%]\ ```

Although the way percentages are calculated is off of the total editor width. So because there is a bit of spacing between columns by default I would recommend reducing the percentages, or setting column spacing to zero:

```start-multi-column\ Number of Columns: 2\ Column Size: [30%, 70%]\ Column Spacing: 0px\ ```

Otherwise the columns would be pushed beyond the editor width, and include a horizontal scrollbar.

I have also added an additional example to the full examples page here, and added additional syntax examples in the ReadMe.

Larry-Louis commented 1 year ago
Number of Columns: 2
Column Size: [30%, 70%]

Although the way percentages are calculated is off of the total editor width. So because there is a bit of spacing between columns by default I would recommend reducing the percentages, or setting column spacing to zero:

Number of Columns: 2
Column Size: [30%, 70%]
Column Spacing: 0px

Otherwise the columns would be pushed beyond the editor width, and include a horizontal scrollbar.

I have also added an additional example to the full examples page here, and added additional syntax examples in the ReadMe.

Thanks for reply. I just need it.