thesecretmaster

Results 44 comments of thesecretmaster

And yes, it was introduced in https://github.com/lucab/caps-rs/commit/49cf9e23052939e923fbd931a1dd8dcef1408557 which does expose the errors to consumers of the library. Thanks for the correction.

My JS isn't great, but I think it'd look something like this: ```javascript function on_initialization() { const editor = the_original_textarea; const cm = the_codemirror_instance; if (editor.hasAttribute('minlength')) { validations['minlength'] = editor.getAttribute('minlength');...

I'd like to tackle this issue! Based on my assessment of this panic, it seems like the cause is in setting `document.getElementById('t').caption` to it's own parent using `InsertBefore`. The call...

More specifically, I have a custom tag (`@spec`) which I would like to generate something that looks like `@note` containing the parent class name and `{include:file:}` where `` is chosen...

I looked at templating, and it seemed to me that templating was for doing things based on the code structure. In my case, I want to simply add a programmatically...

For anyone who stumbles upon this in the future, here is what I came up with. It's exactly what you suggested, with a couple tweaks: ```ruby YARD::Tags::Library.define_tag('MyTag', :mytag) YARD::Parser::SourceParser.after_parse_list do...

Oops, I forgot something. Would it be appropriate to document this in the docs for `YARD::Parser::SourceParser.after_parse_list`? If so, I'll open a pull request.

I agree that `after_parse_list` should be more visible, but even if I'd found the documentation for it I still wouldn't have made the connection to my use case. So, I...

Any update on the state of this PR @lucab? I'd love to get this merged so that I can stop pulling it from git when I use it.