问题标签 [xhtml-transitional]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
html - JSF inserts tag automatically, disturbing the order on page
I have a very basic JSF XHMTL page with the following content
Here's the piece of code that sets up these variables:
What happens here is that "oglasBean.naziv", once when you open the page, comes after "oglasBean.imeAutora" and "oglasBean.prezimeAutora". Inspecting the code revealed that, for some reason, "oglasBean.naziv" is wrapped in pre tag and shows up the last, i.e. after "oglasBean.imeAutora" and "oglasBean.prezimeAutora":
In example given, "title 2" is meant to be above "John" and "Johnson".
Googling for this does't show anything similar, so it seems I am stuck here with a weird problem.
Even if I change "#{oglasBean.naziv}"
to "#{oglasBean.imeAutora}"
the problem remains the same, like JSF just takes whatever is first on the page and wrappes it in pre.
xhtml-transitional - XHTML Table in table 和 wc3 验证器问题
我正在用 XHTML 1.0 编写代码。当我尝试验证是否有答案时:“文档类型不允许元素“表”在这里..”
<table width = "100%">
<table>
something...
</table
</table>
我应该怎么做才能避免这个错误?我的意思是在 XHTML 中嵌套表格。
html - 如何在 XHTML 过渡中禁用电影的自动播放
这是我的代码
当我打开我的网站时,电影会自动播放。
什么是解决方案,以便我可以禁用我的网站中使用 XHTML 过渡的电影的自动播放?
css - 在此上下文中,XHTML 元素不允许作为 XHTML 元素主体的子元素
尽管此页面似乎加载了文件,但我从 NU HTML 检查器收到错误消息。不知道如何清除错误,因为似乎正文中的所有内容当然都是 XHTML 正文元素的子元素。
html - 从 Markdown 转换为 HTML 时使用 Pandoc Lua 过滤器替换 HTML 标签
我有一个 markdown 文件,其中包含一些 HTML 标签,特别是其中一个<br>
标签,我想在使用 pandoc 转换为 HTML 时替换该标签。问题是<br />
由于与一些抱怨<br>
. 我在运行转换时确实尝试了以下 Lua 过滤器,但它没有做任何事情:
filter.lua
:
我正在使用 Pandoc 版本2.13
运行以下命令和以下测试文件:
Test.md
:
pandoc --lua-filter filter.lua --to html5 Test.md
我也尝试过指定--to html4
,但输出仍然相同。有没有办法用 Lua 过滤器做到这一点?
c# - 当 Content-Type: multipart/alternative 时 Gmail 无法正确显示邮件
大家,早安,
我正在向Gmail帐户发送一封使用编程语言(来自一个应用程序的 .net C#)的电子邮件,当它具有 Content-Type: multipart/alternative时,电子邮件无法正确显示;和多种内容类型base64 编码。
该电子邮件已从 IMAP 和 Gmail 网站下载,并在 Thunderbird、Outlook 等中完美显示,同一电子邮件在其他提供商中也完美显示。
似乎解析有问题。
我的电子邮件是这样发送的(显示来源):
收货人:xxxx@gmail.com
...
MIME 版本:1.0
发件人:xxx hello@domain.com
至:xxxx@gmail.com
日期:2021 年 7 月 4 日 19:14:56 +0100
主题:您的一处房产已过期
内容类型:多部分/替代;边界=--boundary_0_7098d72c-b24d-4c3e-973e-5a31722af260
反馈-ID: :xxx.xxx.xx:1.xxx.smtp:xxx
X-Sid: hello@domain.com
X-返回路径:el.99f327f2d43f477812b4861c3d2d8cce.1.xxx.smtp@xxx.domain.co
消息 ID:4GHxmk474xz7rBFm@smtp2-2112.domain.co
----boundary_0_7098d72c-b24d-4c3e-973e-5a31722af260
内容类型:文本/html;字符集=utf-8
内容传输编码:base64
在这里它开始了我的 HTML base64 编码消息
......
----boundary_0_7098d72c-b24d-4c3e-973e-5a31722af260
内容类型:文本/纯文本;字符集=utf-8
内容传输编码:base64
这里开始我的纯文本 base64 消息
如果我不将消息作为 multipart/alternative 发送,它可以工作。如果在 multipart/alternative 我只添加 HTML 版本,它也可以工作。在带有 multipart/alternative 的 Gmail 中,当我发送两个版本(纯文本和 html)时,似乎网络应用程序总是加载纯文本版本。
我无法理解它说明这是一个标准有什么问题,然后它在其他提供商中正常工作。
显然,我解码了 base 64 消息,它给了我一个格式正确的 XHTML 1.0 过渡消息。