Alex Kocharin
Alex Kocharin
@0xTomDaniel , something like `md.renderer.rules.paragraph_open = function () { return '' }` There are a couple of built-in rules here, and you would be overriding those: https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.mjs#L21
Keep `.rs` extension. There is absolutely zero reason to invent new extension for a language that has the same syntax. In case crab codebase significantly diverges from upstream (which I...
One thing I'm missing from `node.js` is the ability to run `node inspect` on remote servers, for which `deno` has no alternative for. So I'd like to see this happen....
Can we have `EguiContexts::try_ctx_mut()` specifically to work around this issue?
> the PR breaks node addition, as the data value in the new node added is null I fixed it in the last force-push, please check again: https://github.com/bhouston/behave-graph/compare/8c6deaae5461393b7f5d1c6c60bea426f7ac1a7c..3d2383d23869871bfea0f78f2fc61aa55427d263
here's all existing custom configurations: - customEvent/onTriggered: customEventId (string) - customEvent/trigger: customEventId (string) - flow/sequence: numOutputs (number) - flow/switch/integer: numCases (number) - flow/switch/string: numCases (number) - flow/waitAll: numInputs (number) -...
I've renamed flow configuration (numInputs/numOutputs/numCases) to a single numSockets in order to avoid "hardcodedness" a little bit. Now every node that has "numSockets" configuration of a "number" type gets a...
> Hmm that's good, but then again, now we cannot distinguish between nodes which only need multiple input sockets We don't need to distinguish between those now. The UI is...
> ['reference', r_reference, ['table', 'fence', 'blockquote', 'hr', 'list', 'html_block', 'heading']], It never makes sense to put `hr` or `heading` (or `table` iirc) in that list, because they don't call block...
> @rlidwka but is it about interrupting those tags or interrupting BY those tags. ` [ 'table', require('./rules_block/table'), [ 'paragraph', 'reference' ] ],` This means that `table` interrupts a `paragraph`....