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 1b6406f commit 1847e2dCopy full SHA for 1847e2d
templates/components/challenge_area.html
@@ -110,7 +110,7 @@
110
111
let playgroundLink = document.getElementById("playground-link");
112
playgroundLink.addEventListener('click', function (event) {
113
- const code = myCodeMirror.getValue() + testCodeMirror.getValue();
+ const code = myCodeMirror.getValue() + "\n\n" + testCodeMirror.getValue();
114
this.href = "https://pyright-play.net/?code=" + LZString.compressToEncodedURIComponent(code);
115
});
116
0 commit comments