Arc Forumnew | comments | leaders | submitlogin
4 points by antiismist 5793 days ago | link | parent

So?

my site, http://pageonetimes.com, validates a lot better, and it also uses Arc. Most of the errors are from "bad" urls from links.

FWIW yahoo.com has more errors...does that mean that PHP makes "atrociouser" html?



3 points by gidyn 5793 days ago | link

PHP doesn't make any HTML :-)

My point is that the Arc libraries do not "encourage" high quality markup. Compare to WASH, where the libraries will only produce strictly compliant HTML.

-----

5 points by jmatt 5793 days ago | link

As an arc developer, I create compliant or not compliant HTML. It's the developer's choice, not the framework's job. That is nice that their are some frameworks out there that always create strictly compliant HTML but it's not necessary for a great web framework. I think a lot of innovations will continue to come from non-compliant hacked web code.

-----

2 points by conanite 5793 days ago | link

Markaby (a ruby html-generation framework) did something similar - it would raise an error if you tried giving the same id to more than one element, for example. Unfortunately, it was quite slow, and last time I checked was not being actively developed. But it was so, so, so readable. A lot like almkglor's http://arclanguage.org/item?id=5608

-----

3 points by almkglor 5793 days ago | link

But! But! I didn't actually implement it, which means it doesn't actually count. Code or it didn't happen.

What I did implement is: http://arclanguage.org/item?id=5570

I feel that it's almost as good as the other solution I presented, but I wonder what the opinion of others are. One advantage it has is that it's the non-Arc code that has special syntax, unlike the marcup version where it's the Arc code that has the special syntax.

Apparently the mockup 'marcup is a bit more popular ^^

Would anyone prefer the 'marcup version over the current, existing 'w/html?

-----