Elegant Customizable Text Highlight Plugin With jQuery - Marker
Marker is a simple, elegant and highly customizable jQuery text highlighting plugin used to highlight parts of your text with mouse selection.
Demo
Download

seen from Ukraine

seen from Ukraine

seen from Ukraine
seen from Indonesia

seen from Ukraine
seen from France

seen from Australia

seen from United Kingdom

seen from Netherlands
seen from Trinidad & Tobago

seen from United Kingdom
seen from United States
seen from Poland
seen from United States
seen from United States
seen from Poland
seen from Canada

seen from United Kingdom
seen from Trinidad & Tobago
seen from Chile
Elegant Customizable Text Highlight Plugin With jQuery - Marker
Marker is a simple, elegant and highly customizable jQuery text highlighting plugin used to highlight parts of your text with mouse selection.
Demo
Download
10 best free jQuery and Vanilla JavaScript text highlighting plugin that make it simple to highlight part of your text block on the client side.
10 best free jQuery and Vanilla JavaScript text highlighting plugin that make it simple to highlight part of your text block on the client side.
Using HTML5 in Email: New Tags
Note: This is the first of two articles examining the use of HTML5 tags in email. In this article, we look at , , and . In the second article, we’ll take a look at the and tags.When it comes to email, common wisdom says you should code it “like it’s 1999.” Using the latest HTML tags is considered risky business in email. Email clients throw out any code that uses scripting, and the…
View On WordPress
Fast Word Highlighting Plugin - jQuery.Highlight.js
Highlight.js is a small, customizable, performant text highlighter that applies custom styles and HTML tags to matched strings or words inside a specific container.
Demo
Download
10 jQuery Text Highlighter Plugins
10 jQuery Text Highlighter Plugins
This in style article was up to date in Might, 2016, to mirror the present state of textual content highlighter plugins.
Many purposes or web sites present a approach for customers to seek for particular phrases. To make this course of quicker, supply a terrific consumer expertise, and usually assist customers discover the content material they’re looking for, you possibly can spotlight these…
View On WordPress
Systax Highlighting in Tumblr
http://alan.dipert.org/post/55814908/shjs-javascript-syntax-highlighting-for-tumblr
위 링크대로 따라하면...근데 스타일이 좀 맘에 안든다. ㅠ.ㅠ
이클립스 스타일대로 해주면 안되나;;
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hadoop.util; import java.io.*; import java.util.Set; import java.util.HashSet; import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.Log; // Keeps track of which datanodes/tasktrackers are allowed to connect to the // namenode/jobtracker. public class HostsFileReader { private static final Log LOG = LogFactory.getLog(HostsFileReader.class); private void readFileToSet(String filename, Set set) throws IOException { File file = new File(filename); if (!file.exists()) { return; } FileInputStream fis = new FileInputStream(file); BufferedReader reader = null; try { reader = new BufferedReader(new InputStreamReader(fis)); String line; while ((line = reader.readLine()) != null) { String[] nodes = line.split("[ \t\n\f\r]+"); if (nodes != null) { for (int i = 0; i < nodes.length; i++) { if (!nodes[i].equals("")) { set.add(nodes[i]); // might need to add canonical name } } } } } finally { if (reader != null) { reader.close(); } fis.close(); } } public synchronized void setExcludesFile(String excludesFile) { LOG.info("Setting the excludes file to " + excludesFile); this.excludesFile = excludesFile; } }
아래 주소도 참조... http://crohr.me/journal/2011/syntax-highlighting-in-tumblr.html