Metadata-Version: 2.1
Name: Placeholdr
Version: 0.0.5
Summary: Placeholdr is a flexible and powerful Python template engine for dynamic substitution of values in templates.
Author: Dekel Cohen
Author-email: <dcohen52@gmail.com>
Keywords: python,template engine,templating,web development,template,dynamic templates,template inheritance,control structures,filters,reusability,custom tags,macros,Placeholdr
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE

# Placeholdr

Placeholdr is a robust and versatile Python library designed to facilitate seamless integration of placeholders within templates and their subsequent substitution with dynamic values. With its intuitive syntax and extensive feature set, Placeholdr empowers developers to craft dynamic and tailor-made templates for a wide range of web applications.

## Key Features

Placeholdr comes packed with a variety of features to enhance your template creation and management:

- **Variable Substitution**: Support for various syntaxes like `{{ variable }}`, `[[ variable ]]`, `< variable >`, etc.
- **Template Inheritance**: Efficiently manage templates with `{% block block_name %}` and `{% endblock %}` tags.
- **Includes**: Easily include external templates using `{% include "path/to/template" %}`.
- **Control Structures**: Intuitive control structures including `{% if condition %}`, `{% endif %}`, `{% for item in iterable %}`, and `{% endfor %}`.
- **Filters**: Apply filters within templates for variable manipulation (e.g., `{{ variable | filter_name }}`).
- **HTML Auto-Escaping**: Automatically escape HTML special characters to enhance security.

## Getting Started

The library is in its early stages of development (version 0.0.4), and we are continuously working to add more features and improve its functionality. We welcome feedback and contributions from the community.

For upcoming documentation, examples, and updates, keep an eye on Placeholdr's GitHub repository: [https://github.com/Dcohen52/Placeholdr](https://github.com/Dcohen52/Placeholdr).
