Skip to main content

hrml

Project description

hrml: 超莉沫酱自慰语言

你还在为编写html度过一个个孤独难耐的夜晚吗?寂寞长夜,你想找个好的编程语言,来宽慰一下自己吗?

hrml是Python风格的自慰语言,可以容易地编译成html。

样例

hrml:

div#all:
    div.my_class1:
        span:
            今天天气不错,来散步自慰吧。
        a href='https://散步自慰':
            go!

html:

<div id='all'>
    <div class='my_class1'>
        <span>
            今天天气不错,来散步自慰吧。
        </span>
        <a href='https://散步自慰'>
            go!
        </a>
    </div>
</div>

使用方法

只要用pip安装——

pip install hrml

然后运行命令就行了——

python -m hrml {输入hrml文件名} -o {输出html文件名}

也可以import它来使用——

import hrml
with open('xxx.hrml') as f:
    print(hrml.masturbate(f.read()))

接口只有masturbate这一个,输入一个hrml的字符串,将它转为html。

def masturbate(s: str):
    ...

语法

每一行表示一个元素,缩进表示嵌套的元素。

当元素以冒号或分号结尾时,是一个节点。分号为自闭节点。
元素的属性和html一样地写在后面,不会被更改。

不以冒号:或分号;结尾的是文字。

hrml:

div:
    你好
img src='1.jpg'; 

html:

<div>
    你好
</div>
<img src='1.jpg'/>

class和id

用 小点. 和 井号# 表示元素的class和id,这些要紧跟在名字的后面。
class和id没有顺序和数量的限制。

hrml:

div.a.b#c:
    你好

html:

<div class='a b' id='c'>
   你好
</div>

注释

使用Python风格注释,如 # 我是注释
注释并不会变成html的注释。

嵌入html内容

可以用文字的形式直接嵌入html内容。
这要求嵌入的内容本身没有缩进。

hrml:

div:
    <a href='折跃门'>折跃!</a>

html:

<div>
    <a href='折跃门'>折跃!</a>
</div>

如果有缩进则会产生错误:

# 这会产生编译错误。
div:
    <a href='折跃门'>
        折跃!
    </a>
# 因为hrml认为「折跃!」是「<a href='折跃门'>」的子节点。
# 但是「<a href='折跃门'>」是文本节点,不能含有子节点。

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

hrml-1.0.2.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

hrml-1.0.2-py3-none-any.whl (4.5 kB view details)

Uploaded Python 3

File details

Details for the file hrml-1.0.2.tar.gz.

File metadata

  • Download URL: hrml-1.0.2.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for hrml-1.0.2.tar.gz
Algorithm Hash digest
SHA256 5ab4343dadff45acba0298903c2c187f67bed2c3166688b16dfbd8a6ef681132
MD5 7ea405eee4e5ac8822bdab3c3039b5d1
BLAKE2b-256 15059735e632a30b32716273bb32926476dd1e7dd9a09c83c57dcbce2dfd028a

See more details on using hashes here.

File details

Details for the file hrml-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: hrml-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 4.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for hrml-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 927c44b5e08a88d44643403ef8bf3410492882285cba5f50d188d264c69f8e24
MD5 e7c67fadb91c4f60c1a787abdabdec6b
BLAKE2b-256 04813830bbde830ebadf4305b24629a25ac19f3ab73145e91fd477247dfd8b55

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page