-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Feature: Highlight special strings #6610
Comments
I am also looking for a solution to this! |
@etrepum do you think it would be good idea to try tackling this? |
@citruscai I think it could be worth making an example, maybe another kind of node + plugin in the playground or a standalone example. I think the |
hi im trying to make a node and plugin and is there common procedure i should be aware of when making one? this would be my first time trying to make a package. im getting the "Are you sure this file exists" error when i try to test it |
It's not really clear to me what you're trying to do that prints that error but I would start with adding your code to the playground. Creating new packages is for stable, generic and reusable code. |
i realized that i was overcomplicating it a lot by trying to create an entire new package for this feature. |
Description
Maybe someone has already mentioned it somewhere, but I haven't seen anything like that.
I would like a specific string in the text to be highlighted, but I don't know what functions to use for that (if they exist).
The reason is that in the text I use e.g. actually variables in the form
[variableName]
and I would like to have them highlighted in the editor.e.g. I have a text:
What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown [printer] took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries
and I want to automatically have [printer] highlighted in the text, e.g. backgroundColor: yellow.
Thank you for any advice
The text was updated successfully, but these errors were encountered: