0

那是 HTML 模板,不是 php 模板,不是 java 或其他。

我正在寻找类似 HAML for PHP 的东西。我尝试了 PHP、PHAML 和 PHPHaml 的 2 个项目,它们都存在严重的错误。

你知道那里有什么好的 html 模板,最好是 PHP 吗?

编辑我正在寻找可以改变它的东西

<h1>Heading</h1>
<p>entry</p>
<blockquote>quote</blockquote>

像这样

h1 : heading
p : entry
blockquote : quote 

类似于phphaml所做的事情

4

3 回答 3

0

你为什么不看纺织品?

http://textism.com/tools/textile/

查看右侧的示例语法,这是一个示例...

h2{color:green}. This is a title

h3. This is a subhead

p{color:red}. This is some text of dubious character. Isn't the use of "quotes" just lazy writing -- and theft of 'intellectual property' besides? I think the time has come to see a block quote.

转换为:

<h2 style="color:green;">This is a title</h2>

<h3>This is a subhead</h3>

<p style="color:red;">This is some text of dubious character. Isn&#8217;t the use of &#8220;quotes&#8221; just lazy writing&#8212;and theft of &#8216;intellectual property&#8217; besides? I think the time has come to see a block quote.</p>

右侧边栏底部还有其他示例。

于 2010-04-15T08:59:11.167 回答
0

试试http://haml-to-php.com/,它是基于最小解析器引擎的对 phamlp 的完全重写。

于 2011-03-24T11:51:15.080 回答
-1

你可以使用这个:http: //github.com/mo-zag/watcher。有一个关于如何在 Ruby Haml 文件中添加 PHP 代码的指南。该观察者将观察文件并将它们保存到您给定的文件夹中。设置也很简单。您不需要使用任何 PHP 模板解析器,只需使用 Ruby 中的原生 Haml 和 Sass。

于 2010-10-13T22:25:22.300 回答