-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Description
In the Jupyter front-end, I can use New -> Text File
and give the file a name which has a .js
extension, edit and then save it. If I navigate away from the editor, the URL to that file looks like:
http://localhost:8888/files/mydir/myfile.js
And when I click it, the file is served up raw, rather than it being opened in the editor. But the URL to, say, a python file looks like:
http://localhost:8888/edit/mydir/myfile.py
Note the files
segment in the first URL vs the edit
segment in the second one. If I manually load the URL to the .js
file, changing files
to edit
, then it is opened in the editor as desired.
A workaround is to name my JavaScript files, which I want to edit in the Jupyter front-end, with a different extensing, e.g. .javascript
. But that's not so great.