Notepad++ does not highlight css inside HTML file [closed] - html

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
In Notepad++, there is no syntax highlighting for CSS inside a HTML file. Is it possible to enable it?

This question has been answered in superuser Different Language Syntax Highlighting. To sum it up, np++ does not support this feature with HTML and CSS, but it does with HTML and JS. There are a few links in the responses to the question which should be helpful in finding a tool that does support multiple languages.
My suggestion is to go to np++ and request the feature. If enough of us do it then maybe they will pay attention.

I always just create a second np++ file and mark the language as CSS, then once I'm done copy it over to the HTML file. :)
May not answer your exact question, but that's the way I work around it.

Try another editor similar to Notepad++, SynWrite, it has such a CSS feature.

Related

Searching gmail at google.com - strange things happen [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I've been looking this days to the code (using google chrome and its Inspect element feature) of several pages in order to see what they are doing (javascript, css, html, etc...) and I've seen something strange when searching for gmail at www.google.es (It's the same with www.google.com)
Just go to the link or search it yourselves and you'll see:
What is that line doing there? I already tried cleaning my monitor but it's not that ;)
I tried to look at the code in order to see if I could understand what is going on but I can't see anything strange:
Any ideas?
It is actually a single unicode character ฏ๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎ which has an unicode entities of \u0e0f\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e\u0e4e
Basically the diacritical mark (commonly used for accented letter) was added to the letter 26 times.
It has nothing to do with google itself, that character was in the meta tag of one of the sites it crawled and thus shown in the search result.
The link Alex posted, provides detailed explanation on this.

How to find out who is using my code? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I suspect that someone has copy-pasted my website HTML and is using it as their own. How can I find out who it is? Is there any way to track them down?
I know that I can reverse-image search.
Is there a way to search the internet by webpage html fragments?
If they didn't rehost my resources, is there a way to check who is hotlinking my CSS or JS, if anyone? (what this person mentioned but didn't explain Hotlinking my Cascading Style Sheets )
You can check the request body fields, assuming that they're stealing your server's bandwith. You can also write a crawler that tries to match your html with other but It won't be reliable. Maybe you can use Google to find specific html blocks: http://en.wikipedia.org/wiki/Google_hacking

How to spell check a website? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Ideally, content should be spell-checked before being marked up with HTML. Unfortunately that does not always happen.
Once the content is integrated with HTML, it's very difficult to run that through a spell checker, e.g. by pasting into MS Word. What strategy should I use to spell check a website?
I would recommend browser extension, this is easy install and work or user output content,
You can install Firefox Spell Checker extension.
I would say make a python script to take HTML in as a single text string and remove anything enclosed by <>. It wouldn't be perfect but you'd mostly have plaintext that can go into msword.
Using a ide like netbeans is usually the best way to recheck HTML code or spell check your code. What do you ise to develope your websites

Can Joomla search Custom HTML Modules? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
Can the Joomla search function search through Custom HTML Modules? Anytime I enter a keyword in my search box, it only returns results from Categories, Contacts, Articles, Newsfeeds, and Weblinks. However, most of my website content is on these custom modules. Sorry, I'm new at Joomla and any help would be appreciated!
It wouldn't really make sense because how would you return the results? Modules do not have urls to link to.
Out of the box this feature is not implemented and I don't know of any extensions which do that. However, you could write your own search plugin: http://docs.joomla.org/Plugin_Development
Regards

How to highlight syntax? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to lean how to highlight syntax of various programming and markup languages. I admit that I have no prior knowledge of this so this might as well be off-topic.
Say, for example, I want to highlight HTML tags. What I think can be done is to use RegEx to find tags.
You can find tags using RegEx and then get their start and end position. Then, you can change the color of that particular text.
However, the above approach will not work if the tags had attributes with them. <img src="...">
So, can someone please guide me as how how this can be achieved.
A third-party API is fine but I would like to learn how this can be done :)
You simply want to highlight HTML code? You can use the SyntaxHighlighter JavaScript library for this.
If you want to learn how, see CSS SyntaxHighlighter 2.0: short tutorial on how to create your own syntax highlighter.
Also, try a simple search for “how to build a syntax highlighter”.