HTML element implementations based on markyp.
Project description
markyp-html
markyp-based HTML implementations.
Installation
The project is listed on the Python Package Index, it can be installed simply by executing pip install markyp-html
.
Getting started
If you are not familiar with the basic concepts of markyp
, please start by having a look at its documentation here.
The following very short example creates the most basic Hello World webpage. As you can see, all it takes is a single webpage()
call and string conversion.
from markyp_html import webpage
page = webpage("Hello World!", page_title="Hello World")
# Get the actual HTML markup.
html = str(page) # or page.markup
print(html)
Here is a slightly more sophisticated Hello World example, that contains all kinds of metadata, some CSS, and a couple of simple text elements:
from markyp_html import meta, style, webpage
from markyp_html.text import h1, p
from markyp_html.inline import strong
page = webpage(
h1("markyp-html"),
strong(p("Hello World!")),
p("This page was generated using Python and markyp-html."),
page_title="markyp-html demo page",
head_elements=[style("h1 {color:red;}\np {color:blue;}")],
metadata=[
meta.author("Website Author"),
meta.charset("UTF-8"),
meta.description("markyp-html demo"),
meta.keywords("markyp-html,markup,Python,HTML"),
meta.viewport("width=device-width, initial-scale=1.0")
]
)
# Get the actual HTML markup.
html = str(page) # or page.markup
print(html)
markyp-html
extensions
markyp-html
is built on markyp. In general, extensions follow the markyp-{domain-or-extension-name}
naming convention.
Here is a list of extension built on top of markyp-html
:
markyp-highlightjs
: Code highlighting in HTML usinghighlight.js
at https://github.com/volfpeter/markyp-highlightjs, contribution is welcome.markyp-bootstrap4
: Bootstrap 4 implementation at https://github.com/volfpeter/markyp-bootstrap4, contribution is welcome.
If you have created an open source markyp-html
extension, please let us know and we will include your project in this list.
Community guidelines
In general, please treat each other with respect and follow the below guidelines to interact with the project:
- Questions, feedback: Open an issue with a
[Question] <issue-title>
title. - Bug reports: Open an issue with a
[Bug] <issue-title>
title, an adequate description of the bug, and a code snippet that reproduces the issue if possible. - Feature requests and ideas: Open an issue with an
[Enhancement] <issue-title>
title and a clear description of the enhancement proposal.
Contribution guidelines
Every form of contribution is welcome, including documentation improvements, tests, bug fixes, and feature implementations.
Please follow these guidelines to contribute to the project:
- Make sure your changes match the documentation and coding style of the project, including PEP 484 type annotations.
mypy
is used to type-check the codebase, submitted code should not produce typing errors. See this page for more information onmypy
.- Small fixes can be submitted simply by creating a pull request.
- Non-trivial changes should have an associated issue in the issue tracker that commits must reference (typically by adding
#refs <issue-id>
to the end of commit messages). - Please write tests for the changes you make (if applicable).
If you have any questions about contributing to the project, please contact the project owner.
As mentioned in the contribution guidelines, the project is type-checked using mypy
, so first of all, the project must pass mypy
's static code analysis.
The project is tested using pytest
. The chosen test layout is that tests are outside the application code, see this page for details on what it means in practice.
If pytest
is installed, the test set can be executed using the pytest test
command from within the project directory.
If pytest-cov
is also installed, a test coverage report can be generated by executing pytest test --cov markyp_html
from the root directory of the project.
License - MIT
The library is open-sourced under the conditions of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for markyp_html-0.1910.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f22efdd3968dc0208e50ce0aaaf43e1d8a22faaf706d89858c402a73104d1c57 |
|
MD5 | 48aba58cf0b3c782f33ff2df53c3fdbd |
|
BLAKE2b-256 | 04ba3da08a5ab6860df7a6a00b84749ebe7ea3702963eb4f5bd48a1315699315 |