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(s) from an extension:

def get_lang(file_ext):
    lang_matches = [
        lang for lang, data in markup_languages.items()
            if file_ext in data['extensions']
    ]
    return lang_matches[0] if len(lang_matches) == 1 else lang_matches

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

Get language(s) from a file path:

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

print(get_lang_from_path('index.html')) # => ['Ecmarkup', 'HTML']
print(get_lang_from_path('style.css'))  # => CSS
print(get_lang_from_path('script.js'))  # => [] (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 / Discuss / Report bug / Report vulnerability / 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.5.tar.gz (6.3 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.5-py2.py3-none-any.whl (5.9 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: markup_languages-1.0.5.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for markup_languages-1.0.5.tar.gz
Algorithm Hash digest
SHA256 d5e0908508425d99b634bcf174fe1bdccee0ca20fd20ba818e75584c5304771d
MD5 8d45b6669e608ee7287aeda862d6103b
BLAKE2b-256 f7cea43cb341cd83554c4578f8b9e0bdfd0524254aafcc65e6a33b4ae6ae140b

See more details on using hashes here.

Provenance

The following attestation bundles were made for markup_languages-1.0.5.tar.gz:

Publisher: publish-to-pypi-on-new-tag.yml on adamlui/python-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for markup_languages-1.0.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7f9a0ed774bffdb17a8014ec2077af4e43601de9e57fde360440af69da9b2d1b
MD5 d04e84099ad6e0600b2b4376eea28ef2
BLAKE2b-256 828b234252a9ffd32b1a22078dc173243e5225be36e9d868ddc5e50d786c6773

See more details on using hashes here.

Provenance

The following attestation bundles were made for markup_languages-1.0.5-py2.py3-none-any.whl:

Publisher: publish-to-pypi-on-new-tag.yml on adamlui/python-utils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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