We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 270c2a3 commit bd75e83Copy full SHA for bd75e83
index.html
@@ -179,7 +179,7 @@ <h1>Try it online</h1>
179
</div>
180
181
<form action="#" method="get">
182
- <input id="generate" type="button" value="Generate markdown">
+ <input id="submit" type="button" value="Generate markdown">
183
<textarea id="markdown"></textarea>
184
185
@@ -228,8 +228,8 @@ <h1>Try it online</h1>
228
$('#error-msg').text(e.message);
229
}
230
231
- $('#generate').on('click', function() {
232
- var $out = $('markdown');
+ $('#submit').on('click', function() {
+ var $out = $('#markdown');
233
var text = 'PHP Script :\n';
234
text += '```php\n';
235
text += editor.getValue();
0 commit comments