at055612
at055612
With the latest changes it now looks like this: **With chroma** ```toml prism_syntax_highlighting = false [markup] [markup.highlight] style = "tango" ```  **With prism** ```toml prism_syntax_highlighting = true [markup] [markup.highlight]...
> I don't suppose there's any way to integrate this logic into normal fenced blocks, is there? We've got logic now to strip prompts from copied commands in our docs...
It could be argued that lookup should only lookup in the kv store to avoid the additional lookup in the range store (if the key is a long), but changing...
You could have `user:jim OR user:bob type:employee` but this would be ambiguous so would likely need to introduce brackets into the mix.
One option for the linking of parts of the schema to the docs is for the XmlSchema explorer tree entity to have a configurable list of associations between xpaths to...
This has been done for the docker stack.
Current thinking is to display a dialog that contains a quick filter field and a list of results below it. Each result will need to contain an icon for the...
Jsonata for java appears to have backing from IBM https://github.com/IBM/JSONata4Java
Custom completions can be done roughly like this ```java AceEditor.addCompletionProvider(new AceCompletionProvider() { @Override public void getProposals(final AceEditor editor, final AceEditorCursorPosition pos, final String prefix, final AceCompletionCallback callback) { if (mode.equals(AceEditorMode.XML))...
See similar code in ExpressionPresenter and DelegatingCompletionProvider