mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-30 12:11:32 +08:00
[bug: 5544] Fixed rendering of URL in append_stream function.
This commit is contained in:
parent
69fe3a6d64
commit
0cfbf0f7d5
@ -484,6 +484,7 @@ define([
|
|||||||
last.text = utils.fixCarriageReturn(last.text + json.text);
|
last.text = utils.fixCarriageReturn(last.text + json.text);
|
||||||
var pre = this.element.find('div.'+subclass).last().find('pre');
|
var pre = this.element.find('div.'+subclass).last().find('pre');
|
||||||
var html = utils.fixConsole(last.text);
|
var html = utils.fixConsole(last.text);
|
||||||
|
html = utils.autoLinkUrls(html);
|
||||||
// The only user content injected with this HTML call is
|
// The only user content injected with this HTML call is
|
||||||
// escaped by the fixConsole() method.
|
// escaped by the fixConsole() method.
|
||||||
pre.html(html);
|
pre.html(html);
|
||||||
|
Loading…
Reference in New Issue
Block a user