Dan Selman
Dan Selman
> There are a few improvements that could be made but the code works. For example, if there is a timestamp in the signature it isn't verified to be within...
Time for your first Open Source contribution? I can walk you through the VS extension code...
Ergo Futures Martin Big fan of Ergo Reached out to OCaml / Coq community Coq may be an issue Could we replace Ergo with WASM? Use Rust or TS as...
@DianaLease would you have cycles to pick this one up, now that we have updated Concerto?
Interesting. What does the CiceroMark look like? I think the editor just uses the variable name from the CiceroMark node.
I see - so we need to distinguish between the name of the field to be updated when editing, and the name of the variable in the model (field name...
Also see: https://github.com/accordproject/web-components/issues/175
Copy/paste uses the Slate CiceroMark HTML transformation, so it is likely that markdown insignificant whitespace is getting dropped. Perhaps we can be smarter at representing blank paras when we convert...
Using this input Slate document: ``` { "document": { "object": "document", "children": [ { "object": "block", "data": {}, "type": "heading_one", "children": [ { "object": "text", "text": "Heading" } ] },...
This line removes empty paragraphs when converting from Slate to CiceroMark: https://github.com/accordproject/markdown-transform/blob/f68f7a33dece4d106c6a17a698b1f411441ef0d9/packages/markdown-slate/lib/slateToCiceroMarkDom.js#L86 While this handles the conversion from CiceroMark to Slate: https://github.com/accordproject/markdown-transform/blob/master/packages/markdown-slate/lib/ToSlateVisitor.js#L532 CiceroMark whitespace handling should be consistent with markdown...