Giter Club home page Giter Club logo

Comments (2)

alecthomas avatar alecthomas commented on June 9, 2024 1

FYI you can test without the Go toolchain by downloading one of the release binaries and running it with:

chroma -l ./dns.xml <input>

from chroma.

tarneaux avatar tarneaux commented on June 9, 2024

After a bit of trial and error, it seems like the following regex has just the right scope to detect only domain names:

([\w\d\.-]+\.[a-z-]{2,24}\.?|^(@|[\w\d-]+))

I have only tested it on a regex playground though, and this is why I am not submitting a PR yet (setting up the working environment is a bit of a hassle with go for me).

Git diff:
$ git diff origin/master
diff --git a/lexers/embedded/dns.xml b/lexers/embedded/dns.xml
index 5ac3c25..ef8f663 100644
--- a/lexers/embedded/dns.xml
+++ b/lexers/embedded/dns.xml
@@ -27,7 +27,7 @@
       <rule pattern="\b([\w\d.-])+\.($|\s)">
         <token type="NameProperty"/>
       </rule>
-      <rule pattern="^(@|[\w\d-]+)">
+      <rule pattern="([\w\d\.-]+\.[a-z-]{2,24}\.?|^(@|[\w\d-]+))">
         <token type="NameClass"/>
       </rule>
       <rule pattern="^\$(TTL|GENERATE|INCLUDE|ORIGIN)">

from chroma.

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.