A lot of the tiddlers i create basically amount to long lists with many headers followed by single-word or single-sentence bullet-lists. I’m using TW for writing and world building so its stuff like character profiles, tables-of-contents, and organizational hierarchy lists.
When viewing these on a large monitor, i can’t help but feel that a huge portion of my screen-space is wasted, as i’m really just looking at a small amount of the tiddler that runs down the left side, if that makes sense?
As i see it there are 2 main ways this could be tackled and they are all far beyond my capabilities:
A tiddler-type or field that “folds” a tiddler once it reaches a set height, OR simply folds any tiddler in half, even if short. This maximizes simplicity but might result in poor formatting at times.
A macro that inserts a “fold” into a tiddler. This maximizes flexibility in formatting, where the more automatic solution might cut off an entry at an undesirable point, this solution would allow you to choose an ideal point to fold at.
These solutions could be enhanced with a few other considerations in mind (though i think they suit option 2 better, and so I favor option 2):
The ability to set a start and end for the folds, so that wider parts of the content could remain unfolded, while thinner parts of the content could be folded.
The ability to set an amount of folds, so that especially thin/long sections can be folded 3 or more times
Thanks for taking a look, I’d be very interested if a solution already exists, or if someone who would also benefit might like to implement one.
This is an interesting solution to other problems, and it does hypothetically help the same situation, but I’d really like the ability to have vertical columns so I can keep the entire character profile in view on one screen.
Columns - lets you present content inside a tiddler split up into columns. The content flows to equal out the colums heights and the view is responsive to tiddler width e.g as affected by device width.
Oh awesome! These look like 2 variations on pretty much exactly what i was hoping for! I knew someone had to have had the same idea before, its a pretty common way to format text.
I’m always stunned just how many solutions are available in tiddlywiki, often for slight variations on the same problem. And beyond that, you can show up with a question and so many helpful people show up right away!
The answers so far are about setting column-count. You can also fix the column-width to a fixed amount and let that dictate the number of columns that show:
<!----><div class="row"><div class="col-c">
!!!Column 1
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
<!---- ----></div><div class="col-c">
!!!Column 2
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
<!------------></div>
</div>
Interesting! I’ve already implemented buttons for a few of the other solutions, but this one does allow me to assign where the columns being and end, so i may well come back to it if i find that I’m really missing that functionality
I’m guessing that this is just due to a formatting issue here in the forum. I think something like this is what was intended:
<div class="row">
<div class="col">
!!!Column 1
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
<div class="col">
!!!Column 2
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</div>