diff options
Diffstat (limited to 'python/fatcat_web/routes.py')
-rw-r--r-- | python/fatcat_web/routes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/fatcat_web/routes.py b/python/fatcat_web/routes.py index 8e07aff0..32a1837d 100644 --- a/python/fatcat_web/routes.py +++ b/python/fatcat_web/routes.py @@ -570,6 +570,8 @@ def release_citeproc(ident): cite = citeproc_csl(csl, style, is_html) if is_html: return Response(cite) + elif style == "csl-json": + return jsonify(json.loads(cite)) else: return Response(cite, mimetype="text/plain") |