Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upDon't allow select on code block shell prefixes #845
Merged
Conversation
src/sass/_theme_rst.sass
Outdated
// Do not allow selection of code block prompts | ||
div.highlight .gp | ||
user-select: none; | ||
pointer-events: none; |
This comment has been minimized.
This comment has been minimized.
agjohnson
Oct 24, 2019
Collaborator
This won't compile I believe, due to the semicolons. Is .gp
class the leading #
and %
?
This comment has been minimized.
This comment has been minimized.
jessetan
Oct 25, 2019
•
Contributor
Good point, I was confused by this. The semicolons have a red background, probably because GitHub sees that it is invalid syntax in SASS (would be valid for CSS).
I mistook the red background for a git diff with characters that were removed.
Please remove the semicolons.
.gp
stands for Generic.Prompt
:
Marks the token value as command prompt (e.g. bash lexer).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Blendify commentedOct 22, 2019
No description provided.