We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab5ee03 commit 68e4a67Copy full SHA for 68e4a67
jupyterquiz/__init__.py
@@ -11,5 +11,5 @@
11
All files in the package are distributed under the MIT License
12
'''
13
14
-__version__ = '2.9.5'
+__version__ = '2.9.5.1'
15
from .dynamic import display_quiz, capture_responses
jupyterquiz/js/helpers.js
@@ -26,7 +26,7 @@ function jaxify(string) {
26
loc2 = mystring.search(/([^\\]|^)(\$\$)/);
27
}
28
// Replace markdown links
29
- mystring = mystring.replace(/<(.*?)>/g, '<a href="$1" target="_blank" class="Link">$1</a>');
+ mystring = mystring.replace(/<http(.*?)>/g, '<a href="http$1" target="_blank" class="Link">http$1</a>');
30
mystring = mystring.replace(/\[(.*?)\]\((.*?)\)/g, '<a href="$2" target="_blank" class="Link">$1</a>');
31
return mystring;
32
0 commit comments