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 markdown 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_data = markup_languages['HTML']

print(html_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.

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.0.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.0-py2.py3-none-any.whl (5.5 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: markup_languages-1.0.0.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.0.tar.gz
Algorithm Hash digest
SHA256 e6c444f85106884cfdbf55eb6dc37bd5b0422f5de42804be35d764677d08fbaa
MD5 3eb65870d261ff9cad91ea09cec0dc9b
BLAKE2b-256 9056c8e8b9b1f08087350f84f2c6e1ca9ef078fb0e8659452765ea97692c6940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for markup_languages-1.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e4fadb30d1e143eaa8f400a7251b5f68dad7cb3b77abf540170e57d35e5d8590
MD5 e2bdea66f445aae0bab610f161ec7261
BLAKE2b-256 946340969da3d9eb01670bdce1ebc8dd1856a2939cf17a298f58b76efddd4fa5

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