awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

7 مستودعات

Awesome GitHub RepositoriesCustom Data Attributes

Embedding of non-visible, site-specific metadata within HTML elements.

Distinguishing note: Specifically covers 'data-*' attributes for scripting, which is distinct from the security-focused 'private embedding' candidates.

Explore 7 awesome GitHub repositories matching web development · Custom Data Attributes. Refine with filters or upvote what's useful.

Awesome Custom Data Attributes GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • whatwg/htmlالصورة الرمزية لـ whatwg

    whatwg/html

    9,163عرض على GitHub↗

    This repository contains the HTML specification, which defines the core standards for web page structuring, content organization, and document rendering. It establishes the fundamental algorithms for state-machine-based tokenization, tree construction for the document object model, and origin-based security isolation. The specification provides a framework for defining custom elements with independent lifecycles and registries. It also details the requirements for cross-document communication, session history management, and the synchronization of interface properties with content attributes.

    Allows the embedding of custom, non-visible information in elements via data attributes for use by site-specific scripts.

    HTMLcanvaseventsourcehtml
    عرض على GitHub↗9,163
  • markdoc/markdocالصورة الرمزية لـ markdoc

    markdoc/markdoc

    8,060عرض على GitHub↗

    Markdoc is a documentation content framework that extends standard Markdown with custom tags, typed schemas, and reusable components, parsing content into an abstract syntax tree and rendering it as React elements or HTML. It provides a structured authoring system where documents are processed through an AST-based pipeline, enabling validation, transformation, and flexible output generation. The framework distinguishes itself through a schema-driven validation pipeline that checks document structure and attribute values against defined rules, and a pluggable renderer architecture that accepts

    Lets users build reusable attribute validators and transformers that enforce custom data formats across tags.

    TypeScriptauthoringdocumentationmarkdoc
    عرض على GitHub↗8,060
  • jquery/sizzleالصورة الرمزية لـ jquery

    jquery/sizzle

    6,306عرض على GitHub↗

    A sizzlin' hot selector engine.

    Registers custom attribute handlers for cross-browser selector compatibility.

    JavaScript
    عرض على GitHub↗6,306
  • instantpage/instant.pageالصورة الرمزية لـ instantpage

    instantpage/instant.page

    6,225عرض على GitHub↗

    instant.page is a client-side JavaScript library that preloads linked pages on hover or touch interactions, making navigation feel instantaneous without consuming unnecessary bandwidth. It works by starting to fetch a page the moment a user hovers over a link for 65 milliseconds, leaving over 300 milliseconds for the page to load before the click, and similarly preloads on touch start for mobile visitors. The script offers multiple preloading strategies to balance responsiveness with resource conservation. It can be configured to preload on mousedown, when links become visible in the viewport

    Restricts preloading to links explicitly marked with a data attribute for fine-grained control.

    JavaScriptinstantperformance
    عرض على GitHub↗6,225
  • python-attrs/attrsالصورة الرمزية لـ python-attrs

    python-attrs/attrs

    5,799عرض على GitHub↗

    attrs is a Python library that automatically generates initialization, representation, equality, hashing, and ordering methods from declarative class attribute definitions. At its core, it provides a class decorator metaprogramming framework that intercepts class creation to rewrite the class body, producing dunder methods without manual boilerplate. The library includes a comprehensive attribute validation toolkit with built-in validators for type checks, range constraints, regex matching, length limits, and logical composition of validation rules. The library distinguishes itself through it

    Checks attribute values against type constraints, custom validators, and logical combinations during instance creation.

    Python
    عرض على GitHub↗5,799
  • hustcc/timeago.jsالصورة الرمزية لـ hustcc

    hustcc/timeago.js

    5,376عرض على GitHub↗

    timeago.js هي مكتبة JavaScript تحول الطوابع الزمنية إلى سلاسل زمنية نسبية مقروءة بشرياً. تعمل كمكتبة تاريخ دولية تحول بيانات التاريخ والوقت الثابتة إلى بيانات وصفية للوقت المنقضي. يوفر المشروع محدثاً زمنياً ديناميكياً يقوم تلقائياً بتحديث تسميات الوقت النسبي على صفحة الويب على فترات منتظمة. يدعم تعريب التاريخ متعدد اللغات، مما يسمح بترجمة بيانات الوقت المنقضي إلى لغات مختلفة باستخدام إعدادات اللغة المدمجة أو المخصصة.

    Uses custom HTML data attributes to identify which elements should be formatted as relative time.

    TypeScript
    عرض على GitHub↗5,376
  • midudev/jscampالصورة الرمزية لـ midudev

    midudev/jscamp

    3,811عرض على GitHub↗

    jscamp is a full-stack web development and education project focused on mastering JavaScript, TypeScript, and AI integration. It provides a structured curriculum and interactive exercises covering language fundamentals, frontend engineering, and backend API development. The project distinguishes itself through the implementation of autonomous AI agents capable of complex task automation, such as modifying files, managing servers, and executing API calls. It includes advanced AI development tools for conversational querying, real-time code suggestions, and automated repository analysis to gene

    Utilizes HTML data attributes to embed and retrieve site-specific metadata for scripting.

    JavaScriptbootcamp
    عرض على GitHub↗3,811
  1. Home
  2. Web Development
  3. Custom Data Attributes

استكشف الوسوم الفرعية

  • Custom Attribute Validators1 وسم فرعيBuilds reusable attribute validators and transformers that enforce custom data formats across tags. **Distinct from Custom Data Attributes:** Distinct from Custom Data Attributes: focuses on validation and transformation logic rather than embedding metadata in HTML elements.
  • Preloading WhitelistsRestricts preloading to links explicitly marked with a data attribute for fine-grained control. **Distinct from Custom Data Attributes:** Distinct from Custom Data Attributes: focuses on using data attributes as a whitelist for preloading, not general metadata embedding.