Open pmeier opened 2 months ago
_Reported in https://github.com/Quansight/ragna/pull/499#discussion_r1745589754._
The snippet below does not honor the indentation
https://github.com/Quansight/ragna/blob/9221bb8d67b5002abd42a6fc985a017b7aa0072f/ragna/deploy/_ui/central_view.py#L208-L210
form ragna.core import MetadataFilter print(MetadataFilter.and_([MetadataFilter.in_("document_name", ["foo.md"])]))
AND( IN('document_name', ['foo.md']), )
We can just wrap into <pre>...</pre> to keep our formatting.
<pre>...</pre>
_Reported in https://github.com/Quansight/ragna/pull/499#discussion_r1745589754._
The snippet below does not honor the indentation
https://github.com/Quansight/ragna/blob/9221bb8d67b5002abd42a6fc985a017b7aa0072f/ragna/deploy/_ui/central_view.py#L208-L210