Robert Levy
Robert Levy
error
I'm getting an error when running this and not really sure how to diagnose or fix it. ``` Traceback (most recent call last): File "C:\Users\rober\Downloads\confluence-page-copier-master\confluence-page-copier-master\copier.py", line 508, in recursion_limit=args.recursion_limit File...
With large files, it would be much easier to work if the editor defaulted everything to a collapsed state so I can then just expand the pieces I'm actively working...
Would love to see support for multiple delimiters. Something like: ``` options.delimiters = [ '__', {start: ''}, {start: '{{', end: '}}'} ] ``` Bonus points for handling nested delimiters (the...
I can parse a file with lots of records. If I have a string representing just 1 record, there should be a shortcut to parse it. (I could use a...
I've got this class: ``` c# [DelimitedFile(Delimiter = "|", Quotes = "\"", HasHeader = true)] class SchemaRow { [DelimitedField(1)] public int Ordinal {get; set;} [DelimitedField(2)] public Guid GUID { get;...