Skip to main content

File extensions for markup languages.

Project description

> markup-languages

File extensions for markup languages.

It's just a JSON file, so you can use it in any environment. Sourced from GitHub's Linguist project (defines all 69 markup languages known to GitHub). Data is updated via script and released via new package version.

Installation

pip install markup-languages

Usage

import markup_languages

html_lang_data = markup_languages['HTML']

print(html_lang_data['extensions']) # => ['.hta', '.htm', '.html', '.html.hl', ...]

Note: Most type checkers will falsely warn markup_languages is not subscriptable because they are incapable of analyzing runtime behavior (where the module is replaced w/ a dictionary for cleaner, direct access). You can safely suppress such warnings using # type: ignore.

Examples

Get language from an extension:

def get_lang(file_ext):
    for lang, data in markup_languages.items():
        if file_ext in data['extensions']:
            return lang

print(get_lang('.sss')) # => 'SugarSS'

Get language from a file path:

def get_lang_from_path(filepath):
    from pathlib import Path
    file_ext = Path(filepath).suffix
    for lang, data in markup_languages.items():
        if file_ext in data['extensions']:
            return lang

print(get_lang_from_path('index.html')) # => 'HTML'
print(get_lang_from_path('style.css'))  # => 'CSS'
print(get_lang_from_path('script.js'))  # => None (use programming-languages pkg)

MIT License

Copyright © 2026 Adam Lui

Related

🇨🇳 non-latin-locales - ISO 639-1 (2-letter) codes for non-Latin locales.
#! programming-languages - File extensions for programming languages.
🏷️ project-markers - Common project root markers.

More Python utilities / Back to top ↑

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

markup_languages-1.0.2.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

markup_languages-1.0.2-py2.py3-none-any.whl (5.7 kB view details)

Uploaded Python 2Python 3

File details

Details for the file markup_languages-1.0.2.tar.gz.

File metadata

  • Download URL: markup_languages-1.0.2.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.2

File hashes

Hashes for markup_languages-1.0.2.tar.gz
Algorithm Hash digest
SHA256 e9532e2df4338627fbc29fa965e40a5d428a4e4ceebd94c995d54d1f6d0b3d9f
MD5 441ee4b19c8900a1be07c4d439b50c86
BLAKE2b-256 a211aac4142984ff7fa255857a9d6fbbf16058ea81458bbe8a6217139feb38ed

See more details on using hashes here.

File details

Details for the file markup_languages-1.0.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for markup_languages-1.0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 21da5b1df9872be9d6f5e4f3ec5e32d66fb1292080350686f0ab453cd23bb3fc
MD5 c626cf93a1895089d6a24942605d2910
BLAKE2b-256 be6d35eaa12f96d6bc42d51519a9b550673d2d8dc10ed98ddbe4d388f8125138

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page