-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'#' replaced by '#{}' inside documentation blocks. #83
Comments
The heredoc string is still a string. So the |
I've been having trouble with this too. I tried creating an docexample snippet to maybe get a work around, but it isn't triggered because atom is picking up anything inside a @doc as a string :( 'docexample': EDIT: |
Looks like we'll need to submit a fix upstream to the atom/bracket-matcher plugin. This line needs to be removed: |
This issue has been open for a while now. Sorry about that. I'm going to try to take care of this within the next week or so. But @ckLee8 if you would like to submit a PR to bracket matcher then feel free 👍 . If not then no worries. I'll try to take care of it soon. |
The atom-brackets package is configured to expand "#" into "#{$1}" in `comment.documentation.heredoc.elixir` contexts. To avoid this and close elixir-editors#83, this changes literal heredoc contexts (`~S`) to have a more specific tag, `comment.documentation.heredoc.literal.elixir`. Tested by `apm link`ing the modified `language-elixir` locally and confirmed that "#" no longer expanded in literal heredocs. Also modified existing tests to expect the new name where appropriate.
When I type '#' inside ' """ ' documentation block I get it replaced by '#{}'.
I understand it should be interpreted as a markdown code.
I get:
instead of
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: