Giter VIP home page Giter VIP logo

Comments (3)

ucarion avatar ucarion commented on June 25, 2024

@calvinjuarez Perhaps you're looking for Pygments.css? This returns a string that is CSS, but is valid LESS code as well.

from pygments.rb.

calvinjuarez avatar calvinjuarez commented on June 25, 2024

@ulyssecarion Pardon? Would that make it possible for GitHub to highlight blocks of code labeled 'less'? Because that's what I'm looking to do.

from pygments.rb.

ucarion avatar ucarion commented on June 25, 2024

@calvinjuarez Oh, I misunderstood you.

I haven't found any less parsers, but there is a SCSS parser. Would that do it for you? It's definitely not perfect, though. Here is what the Scss parser produces when faced with some LESS (which I got from lesscss.org):

@base: #f938ab;

.box-shadow(@style, @c) when (iscolor(@c)) {
  -webkit-box-shadow: @style @c;
  -moz-box-shadow:    @style @c;
  box-shadow:         @style @c;
}
.box-shadow(@style, @alpha: 50%) when (isnumber(@alpha)) {
  .box-shadow(@style, rgba(0, 0, 0, @alpha));
}
.box { 
  color: saturate(@base, 5%);
  border-color: lighten(@base, 30%);
  div { .box-shadow(0 0 5px, 30%) }
}

If you're limited to strictly GitHub, I think that's the best you can do (though you might want to try both sass and scss, since sometimes one seems to work better than the other for less). Adding direct support for Less would require adding a Less lexer to Pygments itself, which you can learn about here, though that might be tricky to do if you've never made a lexer or used Python before.

Perhaps you may want to voice your interest for a Less lexer in this Pygments issue on Bitbucket.

Hope this helps.

from pygments.rb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.