• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here: Home » Change Github’s Default Gist Style With jQuery Plugins

By Abhishek Ghosh June 18, 2015 11:42 am Updated on June 18, 2015

Change Github’s Default Gist Style With jQuery Plugins

Advertisement

Yes, There Are jQuery Plugins to Change Github’s Default Gist Style With jQuery Plugins! They can do lot of works than simple changing look. We wrote how to load Github gist asynchronously in non-blocking way with another method, but one of these plugins can actually do the work.

 

How To Change Github’s Default Gist Style With jQuery Plugins

 

jQuery must be loaded on the webpage. For WordPress, jQuery is usually loaded. You need to follow the official website’s or repo’s guide to tweak them.

We will list the website, you should copy the URLs on a text editor first. Changing with CSS requires nothing but including a CSS in this way :

Advertisement

---

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<style>
/*  SOLARIZED GIST SYNTAX HIGHLIGHTING
    Based on the color palette by Ethan Schoonover: http://ethanschoonover.com/solarized
*/
.gist {-webkit-font-smoothing:subpixel-antialiased;}
.gist ::-moz-selection {color:#FCF4DC;background:#fff;}
.gist ::-webkit-selection {color:#FCF4DC;background:#fff;}
.gist ::selection {color:#FCF4DC;background:#fff;}
.gist {color:#819090 !important;}
.gist .gist-file {border:1px solid #042029 !important;font-family:'Anonymous Pro','Droid Sans Mono','DejaVu Sans Mono',Monaco,Consolas,'Lucida Console',Courier,monospace !important;}
.gist .gist-file .gist-meta {color:#475B62 !important;background-color:#042029 !important;}
.gist .gist-file .gist-meta a {color: #EAE3CB !important;}
.gist .gist-file .gist-meta a {color: #819090 !important;}
.gist .gist-file .gist-data {border-bottom:1px solid #042029 !important;background-color:#0A2933 !important;}
.gist .gist-file .gist-data pre {font-family:'Anonymous Pro','Droid Sans Mono','DejaVu Sans Mono',Monaco,Consolas,'Lucida Console',Courier,monospace !important;}
.gist .gist-file .gist-data .gist-line-numbers {color:#475B62 !important;border-right:1px solid #042029 !important;background-color:#042029 !important;}
.gist-syntax {background:#708284 !important;}
.gist-syntax .c {color:#536870 !important;} /* Comment */
.gist-syntax .err {color:#708284 !important;} /* Error */
.gist-syntax .k {color:#2176C7 !important;} /* Keyword */
.gist-syntax .o {color:#708284 !important;} /* Operator */
.gist-syntax .cm {color:#536870 !important;} /* Comment.Multiline */
.gist-syntax .cp {color:#536870 !important;} /* Comment.Preproc */
.gist-syntax .c1 {color:#536870 !important;} /* Comment.Single */
.gist-syntax .cs {color:#536870 !important;} /* Comment.Special */
.gist-syntax .gd {color:#708284 !important;background:#042029 !important;} /* Generic.Deleted */
.gist-syntax .gd .x {color:#708284 !important;background:#042029 !important;} /* Generic.Deleted.Specific */
.gist-syntax .ge {color:#708284 !important;} /* Generic.Emph */
.gist-syntax .gr {color:#708284 !important;} /* Generic.Error */
.gist-syntax .gh {color:#708284 !important;} /* Generic.Heading */
.gist-syntax .gi {color:#708284 !important;background:#042029 !important;} /* Generic.Inserted */
.gist-syntax .gi .x {color:#708284 !important;background:#042029 !important;} /* Generic.Inserted.Specific */
.gist-syntax .go {color:#708284 !important;} /* Generic.Output */
.gist-syntax .gp {color:#708284 !important;} /* Generic.Prompt */
.gist-syntax .gu {color:#708284 !important;} /* Generic.Subheading */
.gist-syntax .gt {color:#708284 !important;} /* Generic.Traceback */
.gist-syntax .kc {color:#738A05 !important;} /* Keyword.Constant */
.gist-syntax .kd {color:#738A05 !important;} /* Keyword.Declaration */
.gist-syntax .kp {color:#708284 !important;} /* Keyword.Pseudo */
.gist-syntax .kr {color:#708284 !important;} /* Keyword.Reserved */
.gist-syntax .kt {color:#708284 !important;} /* Keyword.Type */
.gist-syntax .m {color:#259286 !important;} /* Literal.Number */
.gist-syntax .s {color:#259286 !important;} /* Literal.String */
.gist-syntax .na {color:#536870 !important;} /* Name.Attribute */
.gist-syntax .nb {color:#A57706 !important;} /* Name.Builtin */
.gist-syntax .nc {color:#708284 !important;} /* Name.Class */
.gist-syntax .nd {color:#595AB7 !important;} /* */
.gist-syntax .no {color:#708284 !important;} /* Name.Constant */
.gist-syntax .ni {color:#708284 !important;} /* Name.Entity */
.gist-syntax .ne {color:#708284 !important;} /* Name.Exception */
.gist-syntax .nf {color:#708284 !important;} /* Name.Function */
.gist-syntax .nn {color:#708284 !important;} /* Name.Namespace */
.gist-syntax .nt {color:#2176C7 !important;} /* Name.Tag */
.gist-syntax .nv {color:#708284 !important;} /* Name.Variable */
.gist-syntax .ow {color:#708284 !important;} /* Operator.Word */
.gist-syntax .w {color:#708284 !important;} /* Text.Whitespace */
.gist-syntax .mf {color:#259286 !important;} /* Literal.Number.Float */
.gist-syntax .mh {color:#259286 !important;} /* Literal.Number.Hex */
.gist-syntax .mi {color:#259286 !important;} /* Literal.Number.Integer */
.gist-syntax .mo {color:#259286 !important;} /* Literal.Number.Oct */
.gist-syntax .sb {color:#259286 !important;} /* Literal.String.Backtick */
.gist-syntax .sc {color:#259286 !important;} /* Literal.String.Char */
.gist-syntax .sd {color:#259286 !important;} /* Literal.String.Doc */
.gist-syntax .s2 {color:#259286 !important;} /* Literal.String.Double */
.gist-syntax .se {color:#259286 !important;} /* Literal.String.Escape */
.gist-syntax .sh {color:#259286 !important;} /* Literal.String.Heredoc */
.gist-syntax .si {color:#259286 !important;} /* Literal.String.Interpol */
.gist-syntax .sx {color:#A57706 !important;} /* Literal.String.Other */
.gist-syntax .sr {color:#259286 !important;} /* Literal.String.Regex */
.gist-syntax .s1 {color:#259286 !important;} /* Literal.String.Single */
.gist-syntax .ss {color:#259286 !important;} /* Literal.String.Symbol */
.gist-syntax .bp {color:#708284 !important;} /* Name.Builtin.Pseudo */
.gist-syntax .vc {color:#708284 !important;} /* Name.Variable.Class */
.gist-syntax .vg {color:#708284 !important;} /* Name.Variable.Global */
.gist-syntax .vi {color:#708284 !important;} /* Name.Variable.Instance */
.gist-syntax .il {color:#708284 !important;} /* Literal.Number.Integer.Long */
</style>

See it in action :

 

Change Github’s Default Gist Style With jQuery Plugins : Projects

 

Now with jQuery Plugins. Intelligist is a jQuery plugin that makes it easy to share multiple, executable GitHub gists :

Vim
1
https://github.com/srobbin/jquery-intelligist

There are live demo. Here is screen shot:

Change Github's Default Gist Style With jQuery Plugins

There is LoadGist :

Vim
1
https://github.com/isayme/loadGist

Using this method demands a slight more knowledge, but it worths :

Vim
1
https://gist.github.com/benjamine/999085

There is GistEmbed :

Vim
1
https://github.com/blairvanderhoof/gist-embed

There is officially listed jQuery Plugin :

Vim
1
http://plugins.jquery.com/jquery-gist/

This Article Has Been Shared 381 Times!

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Change Github’s Default Gist Style With jQuery Plugins

  • Graphics Tablet : How a Graphics Tablet Works

    Graphics Tablet is a surface with a pointing device for computer input, usually for graphical works.It receives the information on pen pressure and forwards it.

  • Artificial Immune System (AIS)

    Artificial Immune System (AIS) is a class of algorithms used in computational systems with the principles of the immune system of higher class of vertebrates.

  • MongoDB : High Performance Open Source Database

    MongoDB is a high-performance, schema free document oriented open source database is written in C++ programming language. The database is document oriented.

  • Sandbox in Computer Security

    Sandbox allows the execution of software(s) with less risk to the operating system. These are often used to execute untested code of dubious origin.

  • Disaster Recovery : What Happens in the Data Center After a Natural Disaster

    To explain the importance of Disaster Recovery it must be emphasized that the events are rare to become impact and it is highly unlikely that impact occurs at incalculable proportions.

Additionally, performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • What is Configuration Management February 5, 2023
  • What is ChatGPT? February 3, 2023
  • Zebronics Pixaplay 16 : Entry Level Movie Projector Review February 2, 2023
  • What is Voice User Interface (VUI) January 31, 2023
  • Proxy Server: Design Pattern in Programming January 30, 2023

About This Article

Cite this article as: Abhishek Ghosh, "Change Github’s Default Gist Style With jQuery Plugins," in The Customize Windows, June 18, 2015, February 6, 2023, https://thecustomizewindows.com/2015/06/change-githubs-default-gist-style-with-jquery-plugins/.

Source:The Customize Windows, JiMA.in

PC users can consult Corrine Chorney for Security.

Want to know more about us? Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT