mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Don't urlescape the text that goes into a title tag
This commit is contained in:
parent
395c983377
commit
e34b7aa9a7
@ -44,7 +44,7 @@ class TreeHandler(IPythonHandler):
|
||||
if len(comps) > 3:
|
||||
for i in range(len(comps)-2):
|
||||
comps.pop(0)
|
||||
page_title = url_escape(url_path_join(*comps))
|
||||
page_title = url_path_join(*comps)
|
||||
if page_title:
|
||||
return page_title+'/'
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user