Open Freymaurer opened 9 months ago
I don't quite understand the requested feature from the text 😅
Create tab separated text from composite cells 😅 . Like one line per cell.
:bug: found a bug for cells without tsr tan, in which tabs were trimmed away. so change to:
static member fromTabTxt (tabTxt: string) =
let lines = tabTxt.Split(System.Environment.NewLine, System.StringSplitOptions.None)
let cells = lines |> Array.map (fun line -> CompositeCell.fromTabStr line)
cells
Is your feature request related to a problem? Please describe. While developing Swate the need for clipboard support arose. I decided to parse the cells to tab seperated strings, due to:
Describe the solution you'd like
⚠️ Function names are off, there must be ebtter options.