Dhruva Sagar

Results 199 comments of Dhruva Sagar

Yes please!

Well to be honest, it should really be written as : ``` less ul { li { display: block; padding: .5em; a { color: red; } } h4 { color:...

Hi, I wasn't aware of this extension, thanks for letting me know. I will add this to the README.

Hey, this is by design, as of now there's no way to configure any padding etc. What it's doing here is simply aligning data within those table separators.

@slarrain Can you share how that table should finally look like ?

@slarrain The `{pattern}` is meant to match the delimiter that separates each column value.

@slarrain This can't be done natively by `Tabelize` or it's variants because, like I said, `{pattern}` currently is a regex that defines delimiters for each column value (like for csv...

Following is a snippet that should work : ```viml function! functions#TableizeMarkdown() range let line = a:firstline while line < a:lastline " First subheading if getline(line) =~# '^##' break endif let...

@binyomen perhaps you can share an example of what you're trying to do ? It'll help me better understand what you're trying to do.