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 / 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.4.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.4-py2.py3-none-any.whl (5.8 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: markup_languages-1.0.4.tar.gz
  • Upload date:
  • Size: 6.3 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.4.tar.gz
Algorithm Hash digest
SHA256 f1e643ba39e1eb601c041abfdca4d10c9ca41fd8efa1dcd53de18fce6b09752a
MD5 a25123c0bc68ff9842e2db4a53f9557d
BLAKE2b-256 07d7d104bf8b13c6869a6e1eaa54b89f892da841f6e00ad39963008c928cfc25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for markup_languages-1.0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3692af82594da08baf75e4ed1a088570576ffcc970cfe1788583eb231e39ebac
MD5 d4dc084d07a1ad00941de4032e166f03
BLAKE2b-256 002d5cb3a8ed24abc0795bbd1c11fa448f435141a828d5feac04c67658872dbb

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