You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When part of the middle of a code block is selected and copied with Stardown, the result does not include the rest of the code block under the selection, but does include the rest of the code block above the selection.
For example, if on Basic Syntax | Markdown Guide you select <title>Test</title> and copy with Stardown, the output is:
```
<html>
<head>
<title>Test</title>
```
This should be changed to keep only the selection and wrap it with <pre> and <code> elements instead of expanding the selection until it includes them. The output should be:
```
<title>Test</title>
```
The text was updated successfully, but these errors were encountered:
When part of the middle of a code block is selected and copied with Stardown, the result does not include the rest of the code block under the selection, but does include the rest of the code block above the selection.
For example, if on Basic Syntax | Markdown Guide you select
<title>Test</title>
and copy with Stardown, the output is:```
<html>
<head>
<title>Test</title>
```
This should be changed to keep only the selection and wrap it with
<pre>
and<code>
elements instead of expanding the selection until it includes them. The output should be:```
<title>Test</title>
```
The text was updated successfully, but these errors were encountered: