Results 199 comments of alifeee

If you use VSCode, you can use [Markdown All In One](https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one) to create an automatically-updating table of contents within the markdown file.

> Thank you for responding. I don't, seems the plugin you are refereeing to is written in Typescript. Would it be possible to port code from it? I'm not sure,...

> We probably don't need an external library once https://github.com/zerodevx/zero-md/pull/83 lands though. Why? AnchorJS is for *adding* the links to the document tree. Since AnchorJS uses `document.querySelectorAll`, `zero-md` needs to...

That is what I'm currently doing :), but AnchorJS implementation means I must use zero-md with `no-shadow` in order that it finds the `` etc. tags to add the link...

> I have added tested the code and it works as expected. > > Should I open a pull request? hi hi @muddi900! thanks for the enthusiasm :) we'd love...

it is not in 6.1.3. it will be added in 6.2.0

looks wonderful ;) ~~this should have a test~~ I have bad eyes. It does have a test. @muddi900 would you like any help with the cassettes ?

@muddi900 I have updated your test and cassette the function is called like ```python sheet.batch_merge( { "A1:B2": utils.MergeType.merge_all, "C2:D2": utils.MergeType.merge_all, "C3:C4": utils.MergeType.merge_all, } ) ``` The normal merge function (I...

I agree @muddi900. What do you think @lavigne958? I see three options 1 ```python sheet.batch_merge( [ "A1:B2", "C2:D2", "C3:C4" ] ) ``` 2 ```python sheet.batch_merge( [ {"range": "A1:B2"}, {"range": "C2:D2"},...

> This is supported in https://github.com/devtheorem/php-handlebars. very cool thank you