如何使用 HTML 格式化 telegra.ph API
How to use HTML formatting with telegra.ph API
我正在使用 telegra.ph
api 编辑我制作的页面。我想将页面上的文本格式化为与页面右侧对齐。现在我通过 Python 请求发送的内容是:
from telegraph import Telegraph
tel = Telegraph(my_access_token)
content = [{"tag": "h4",
"children": ["Hello, World!"]},
"attrs": {"dir": "rtl"}
}]
page = tel.edit_page(path='/url',
title='testing',
content=content,
)
但是请求完全忽略了 "dir": "rtl"
属性,因为 "dir" 不是 Telegraph 接受的属性之一。如何通过 telegra.ph
将文本右对齐?
Telegraph 目前仅支持有限的HTML 标签,您也无法通过官方编辑器对齐。
如果有人仍在寻找答案,我可以通过将标题更改为 Arabic/Farsi 个字母来将文本从右向左移动。如果您的 Arabic/Farsi 文本格式是从左到右,您可以在页面标题中使用 Arabic/Farsi 个字母来修复它。
我正在使用 telegra.ph
api 编辑我制作的页面。我想将页面上的文本格式化为与页面右侧对齐。现在我通过 Python 请求发送的内容是:
from telegraph import Telegraph
tel = Telegraph(my_access_token)
content = [{"tag": "h4",
"children": ["Hello, World!"]},
"attrs": {"dir": "rtl"}
}]
page = tel.edit_page(path='/url',
title='testing',
content=content,
)
但是请求完全忽略了 "dir": "rtl"
属性,因为 "dir" 不是 Telegraph 接受的属性之一。如何通过 telegra.ph
将文本右对齐?
Telegraph 目前仅支持有限的HTML 标签,您也无法通过官方编辑器对齐。
如果有人仍在寻找答案,我可以通过将标题更改为 Arabic/Farsi 个字母来将文本从右向左移动。如果您的 Arabic/Farsi 文本格式是从左到右,您可以在页面标题中使用 Arabic/Farsi 个字母来修复它。