awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

15 repositorios

Awesome GitHub RepositoriesString Escapers

Utilities for handling special characters within string literals.

Explore 15 awesome GitHub repositories matching programming languages & runtimes · String Escapers. Refine with filters or upvote what's useful.

Awesome String Escapers GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • typst/typstAvatar de typst

    typst/typst

    54,320Ver en GitHub↗

    Typst is a programmable, markup-based typesetting engine designed for professional document creation. It functions as a scriptable publishing toolchain that transforms plain text and code into complex, paginated outputs. By utilizing a high-performance compiler, the system automates document assembly, mathematical rendering, and dynamic content generation, providing a unified workflow for academic and technical authoring. The engine distinguishes itself through a declarative layout framework that uses cascading rules to manage document structure and visual styling. Unlike traditional systems,

    Handles special characters like newlines and quotes within text literals using standard escape sequences for accurate rendering.

    Rustcompilermarkuptypesetting
    Ver en GitHub↗54,320
  • toon-format/toonAvatar de toon-format

    toon-format/toon

    24,642Ver en GitHub↗

    Toon is a data serialization library and toolkit designed to convert complex objects into compact, human-readable formats optimized for large language models. By focusing on token efficiency, the library minimizes the context window footprint of structured data through techniques like key folding and tabular layout optimization. It provides a streaming-capable processor that handles the encoding and decoding of hierarchical data while maintaining structural integrity. The project distinguishes itself through its path-aware transformation pipeline and configurable serialization logic, which al

    Provides utilities for handling special characters and control symbols within serialized string data to ensure parsing integrity.

    TypeScriptdata-formatllmserialization
    Ver en GitHub↗24,642
  • simdjson/simdjsonAvatar de simdjson

    simdjson/simdjson

    23,260Ver en GitHub↗

    simdjson is a high-performance, header-only C++ library designed for parsing, querying, and serializing JSON data with minimal memory overhead. It functions as a hardware-aware data processing engine that leverages vector instructions to achieve gigabyte-per-second parsing speeds. By detecting host processor capabilities at runtime, the library automatically selects the most efficient instruction sets to accelerate structural analysis and validation. The library distinguishes itself through a focus on extreme efficiency and resource management. It utilizes memory mapping and padded buffer ali

    Ensures special characters are correctly escaped and encoded to maintain valid JSON string syntax.

    C++aarch64arm64avx2
    Ver en GitHub↗23,260
  • crystal-lang/crystalAvatar de crystal-lang

    crystal-lang/crystal

    20,299Ver en GitHub↗

    Crystal is a statically typed, compiled programming language designed for high performance and memory safety. It leverages an LLVM-based compiler to translate source code into optimized machine-executable binaries, while its type-inference-based static analysis enforces strict safety rules during the build process. The language distinguishes itself through a fiber-based concurrent runtime that manages lightweight execution units for asynchronous input and output without blocking the main process. It also features a powerful compile-time macro system that allows for the inspection and transfor

    Encodes non-printable characters and backslashes within string literals using backslash-prefixed sequences.

    Crystalcompilercrystalcrystal-language
    Ver en GitHub↗20,299
  • hammerspoon/hammerspoonAvatar de Hammerspoon

    Hammerspoon/hammerspoon

    14,497Ver en GitHub↗

    Hammerspoon is a programmable automation engine for macOS that enables deep system-level control through a Lua scripting environment. By bridging high-level scripts with native Objective-C APIs, it allows users to interact with the operating system's accessibility tree, intercept hardware input streams, and manage the lifecycle of running applications. The project distinguishes itself through an event-driven architecture that registers asynchronous hooks for system notifications and hardware events. This allows for real-time automation, such as remapping keyboard and mouse inputs, managing wi

    Converts non-printable characters to hexadecimal sequences for readable console output.

    Objective-Cautomationhammerspoonirc
    Ver en GitHub↗14,497
  • lib/pqAvatar de lib

    lib/pq

    9,903Ver en GitHub↗

    pq is a PostgreSQL driver for Go that implements the standard database/sql interface. It serves as a connection library and protocol implementation that translates application data types into the binary and text formats required by PostgreSQL. The project provides specialized utilities for high-performance data ingestion using bulk data loading and a dedicated bulk data importer. It also features an implementation for listening to asynchronous server notifications and provides tools for connection load balancing across multiple hosts and ports. The driver covers a broad surface of database i

    Provides utilities to escape special characters in string literals to prevent SQL injection and syntax errors.

    Go
    Ver en GitHub↗9,903
  • eternnoir/pytelegrambotapiAvatar de eternnoir

    eternnoir/pyTelegramBotAPI

    8,684Ver en GitHub↗

    pyTelegramBotAPI is a Python framework and API wrapper designed for building bots that interact with the Telegram Bot API. It provides a toolkit for managing bot lifecycles through both synchronous and asynchronous request patterns. The framework is distinguished by a routing system that uses custom filters and middleware pipelines to direct incoming updates to specific handlers. It includes a finite state machine manager to track user progress through multi-step conversations and a retry-based system to handle server-side rate limiting. The library covers a broad range of capabilities, incl

    Includes a utility to sanitize strings by escaping reserved characters to prevent formatting errors in messages.

    Pythonbot-apipython-apitelegram
    Ver en GitHub↗8,684
  • sindresorhus/execaAvatar de sindresorhus

    sindresorhus/execa

    7,517Ver en GitHub↗

    Execa is a promise-based process execution library that serves as a wrapper for the Node.js child process module. It functions as a shell command runner and subprocess management tool, simplifying the execution of external commands and binaries. The library distinguishes itself through automatic argument escaping to prevent shell injection and the use of abort signals for graceful process termination. It also provides an inter-process communication wrapper for exchanging structured JSON data and messages between parent and child processes. Its capabilities cover a broad range of process I/O

    Automatically quotes and escapes shell arguments to prevent command injection and ensure literal string interpretation.

    JavaScript
    Ver en GitHub↗7,517
  • jerry-git/learn-python3Avatar de jerry-git

    jerry-git/learn-python3

    6,754Ver en GitHub↗

    This is an interactive Python tutorial delivered as a collection of Jupyter notebooks. It is designed as a structured learning path for beginners, teaching fundamental language concepts through a sequence of lessons that combine explanatory text with runnable code cells and embedded practice exercises. Each notebook is a self-contained unit that introduces a topic, demonstrates it with a minimal code example, and then asks the learner to write code themselves, receiving immediate feedback from the browser-based execution environment. The curriculum is built on a progressive concept-stacking mo

    Teaches escape sequences for including special characters like newlines and tabs in strings.

    HTMLjupyter-notebooklearning-pythonpython-exercises
    Ver en GitHub↗6,754
  • rust-lang/rfcsAvatar de rust-lang

    rust-lang/rfcs

    6,406Ver en GitHub↗

    The Rust RFCs repository is the formal home for the Rust language evolution process, housing the structured design documents and community review mechanisms that govern changes to the Rust programming language, its compiler, and its standard library. It defines the complete lifecycle for proposing, discussing, and implementing substantial changes through RFC documents, from initial submission and community feedback through final comment periods and sub-team sign-offs. The repository codifies the governance and collaboration processes that shape Rust's development, including mechanisms for com

    Specifies the escaping rules for format strings in the standard library's formatting macros.

    Markdownrfcrfc-processrust
    Ver en GitHub↗6,406
  • timber/timberAvatar de timber

    timber/timber

    5,650Ver en GitHub↗

    Timber is a PHP library that integrates the Twig template engine into WordPress themes, providing an object-oriented framework for theme development. It wraps WordPress data — posts, terms, users, menus, and comments — in structured PHP classes, allowing developers to work with objects instead of raw arrays while keeping HTML markup separate from PHP logic through Twig templates. The library distinguishes itself by offering a complete set of tools for modern WordPress theme building. It includes a file-based template hierarchy with fallback chains, dynamic image manipulation with resizing, cr

    Escapes text for safe insertion into inline JavaScript contexts like onclick attributes or script variables.

    PHPhactoberfestphptimber
    Ver en GitHub↗5,650
  • yoav-lavi/melodyAvatar de yoav-lavi

    yoav-lavi/melody

    4,747Ver en GitHub↗

    Melody es un transpiler de expresiones regulares y compilador de patrones que traduce una sintaxis de alto nivel legible por humanos a expresiones regulares estándar. Funciona como una herramienta para simplificar la creación y mantenibilidad de patrones de coincidencia complejos. El proyecto proporciona una sintaxis especializada para definir variables y macros reutilizables para reducir la duplicación dentro de las expresiones. Incluye soporte nativo para mapear etiquetas especializadas a propiedades de categoría Unicode y maneja automáticamente el escape de texto literal. El sistema es accesible a través de varias interfaces, incluyendo una herramienta de línea de comandos para compilar y probar patrones contra cadenas o archivos, un REPL interactivo con estado para evaluación en tiempo real y un plugin de Babel para integrar transformaciones de sintaxis en pipelines de construcción de JavaScript. También ofrece una interfaz basada en navegador para probar la sintaxis sin instalación local. El compilador admite capacidades estándar de expresiones regulares como grupos de captura, aserciones de lookaround, clases de caracteres y cuantificadores.

    Automatically escapes reserved regular expression symbols to ensure literal matching of plain text.

    Rust
    Ver en GitHub↗4,747
  • scriban/scribanAvatar de scriban

    scriban/scriban

    3,905Ver en GitHub↗

    Scriban is a text templating library and .NET scripting engine used for dynamic text generation. It functions as a template processor and a safe scripting sandbox, providing a secure execution environment that restricts object exposure to prevent unauthorized code execution. The project also includes an abstract syntax tree template parser that allows for programmatic template analysis and modification. The engine features a dedicated Liquid template engine and compatibility mode, allowing it to parse, execute, and convert templates written in Liquid syntax. It distinguishes itself through a

    Includes functions to escape special metacharacters so they are treated as literal text within regular expressions.

    C#handlebarsliquidmustache
    Ver en GitHub↗3,905
  • lunet-io/scribanAvatar de lunet-io

    lunet-io/scriban

    3,905Ver en GitHub↗

    Scriban is a .NET text templating engine and embedded scripting language used for dynamic text generation. It functions as an abstract syntax tree manipulation tool and a template parser, allowing for the conversion of scripts into visitable trees for analysis, modification, and rendering. The engine is specifically designed for Native AOT compatibility, utilizing a reflection-free API to execute templates in trimmed environments. It also provides a dedicated parser and conversion system for Liquid templates, enabling the migration and execution of Liquid scripts within .NET. The project cov

    Replaces regular expression metacharacters with escape codes to treat them as literal characters.

    C#
    Ver en GitHub↗3,905
  • fastify/fast-json-stringifyAvatar de fastify

    fastify/fast-json-stringify

    3,701Ver en GitHub↗

    fast-json-stringify is a high-performance JSON serialization library that uses JSON Schema to compile optimized functions for converting JavaScript objects into strings. It serves as a schema-based JSON serializer that generates specialized serialization logic to outperform standard stringification methods. The project provides capabilities to export standalone serialization code to files for direct execution and supports schema reference resolution to eliminate logic duplication. It allows for the deactivation of character escaping for trusted data to reduce overhead and includes specific op

    Allows disabling character escaping for trusted strings to reduce serialization overhead and increase throughput.

    JavaScript
    Ver en GitHub↗3,701
  1. Home
  2. Programming Languages & Runtimes
  3. Programming Utilities
  4. String Utilities
  5. String Escapers

Explorar subetiquetas

  • Escaping DeactivationThe ability to disable character escaping for trusted data to increase serialization speed. **Distinct from String Escapers:** Distinct from general string escapers as it focuses on the strategic removal of escaping for performance.
  • Format String Escaping ConventionsRules for escaping special characters in format strings, such as using {{ and }} for literal braces. **Distinct from String Escapers:** Distinct from String Escapers: focuses on the specific escaping conventions within format strings, not general string escaping utilities.
  • JavaScript EscapersEscapes text for safe insertion into inline JavaScript contexts, such as onclick attributes or script variables. **Distinct from String Escapers:** Distinct from String Escapers: specifically escapes for JavaScript contexts, not general string escaping.
  • Regex Literal EscapersFunctions that escape special characters in a string so it can be used as a literal in a regular expression. **Distinct from String Escapers:** Distinct from String Escapers: specifically escapes regex metacharacters, not general string escape sequences.
  • Regex Literal UnescapersFunctions that convert escaped regex characters back to their original literal form. **Distinct from Regex Literal Escapers:** Performs the inverse operation of a regex literal escaper.