Merge pull request #1065 from geekan/add_params_to_search_engine

add params to search engine
This commit is contained in:
Alexander Wu 2024-03-21 15:02:20 +08:00 committed by GitHub
commit 657934d3ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 6 deletions

View file

@ -330,7 +330,7 @@ class ActionNode:
def compile_to(self, i: Dict, schema, kv_sep) -> str:
if schema == "json":
return json.dumps(i, indent=4)
return json.dumps(i, indent=4, ensure_ascii=False)
elif schema == "markdown":
return dict_to_markdown(i, kv_sep=kv_sep)
else: