-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Html:YourMakingMoreWorkForUs #17
Comments
If you want to have access to whatever tags you want you have to namespace it. There's no way to distinguish from, say, Also, you shouldn't be writing much HTML ;) Your server should be writing out the HTML and you should be writing tiny HTML snippets. P.S. I fixed up your post. On GitHub you can do code snippets with three backtickets like:
|
Nice. Thanks for fixing up my code. I get it now. Also, I really appreciate your prompt response! So, 1) You mentioned I could just use HTML5 semantics if I prefer it that way, so 1a) Could I use HTML5 and HTML6 in the same page? and 1b) my assumption would be that HTML6 would become the new standard and HTML5 will become phased out.
<div:hereIsMyIdea>
stuff
</div:hereIsMyIdea> or <html:hereIsMyIdea>
stuff
</html:hereIsMyIdea> 3rd question: Can you still class or ID things? <hereIsMyIdea class="a-class" id="an-id"> This makes sense so that you could have a standard format for all but on special pages, maybe one small aspect of the css changes. thoughts? thanks! |
1a) No, because you wouldn't be able to tell what's HTML5 and what's HTML6. Just like you can't use HTML inside of true XHTML. (doing 1b) HTML5 and less would be it's own style, yeah. Like XHTML was phased out, HTML5 would be seen as the "old" way of writing HTML. But like now, you could still write XHTML or even most of HTML3.2 and all of 4. 2a) That'd defeat the purpose of HTML6 where you could use any vanilla HTML you wanted, like XML. 2b) Wouldn't that be equally as much typing, if not more? Now you have to namespace all your custom HTML which would be the majority if your HTML rather than the few header elements and media elements in the body.
|
Thanks! |
@OscarGodson, I agree with @zakkates here, and I'm sorry to say that I think your proposal is completely flawed. You talk about HTML6 being "truly semantic", but semantics is about meaning. Meaning is nothing without understanding, yet you want to move all the tags that are understood by the browser to an Essentially, you want to replace tags with classes. Your If you wanted to make HTML shorter, doing it the other way around and putting the custom tags under a namespace (e.g. Very interesting read though, and nice butterfly! :P |
Thanks @jb My thought is that this should make programming easier for us, not more tedious work. Right? Having to add "html:" to all of my normal tags does not save me time, it's adding work to my development. zk |
@zakkates If adding @jb "If you wanted to make HTML shorter" that is absolutely not the point of the spec. If typing is a big problem for you, you should use an editor with autocomplete. This is also not for the browser. The browser already doesn't care about semantics. In what cases does the browser care about the semantics of a site? It just sees tags. Some are special and it does something with it (makes them clickable, changes the CSS, etc), but it could care less if your HTML is semantic or not. If it did, over half the web would be broken. This is for the human which as you say is elegant to read, write, and work with in your code and templates and for spiders/bots. Example: If you're writing a bot and you wanted to look for calendars because you were making a search engine that when you search for some term and it relates to a date you want to look at a bunch of sites and try to find dates. Right now to do this you look for all kinds of crazy stuff like uls and ols containing dates in the lis, for an array of classes Bots are already trying to find meaning in classes and IDs. Google's has done inline search result nav based on looking up I also want to point out that this is meant for apps. Apps are generally not crawled since they contain user data. Google doesn't crawl your Facebook, email, or calendar. If you were just making a plain site or blog and SEO was crucial to you could just use old HTML if you wanted. |
Hey Oscar! I just checked out "Simple", it rocks!!!!! I just requested an invite. Where'd you learn how to develop apps? |
Semantics are very important because not all browsers work in the conventional way. Take screen-readers for example, which make use of emphasis "If this were implemented there'd be less to look for." You want the next version of HTML to be nicer for humans to read than browsers, be designed specifically for apps, be meaningless to computers, and completely break all backwards compatibility with the 20-year-old HTML specification? Do you honestly foresee this becoming an official specification? |
@zakkates is the email you used in your GitHub profile the email you requested? i can send you an invite right now if so. If not let me know your email and i'll send you one. I learned on my own when I was ~15ish :) |
yup, same email I used for github. when you were 15ish... geez, did I miss my calling? haha. I'm 24 now, and I know html and php pretty well. I do primarily front end and minor back-end wordpress development for websites. |
From people who actually use screen readers, they've told me these tags don't even matter and that most readers ignore them because they're use wrongly and purely for presentation so often.
Most readers from my understanding ignore this because, again, they're used incorrectly so often for spacing. I couldn't find any links that said this was a default in any screen reader. Even as you said, "semantics is about meaning". The problem with the tags you give an example for are already garbage by screen readers because they're not used the way they're supposed to. In HTML6 if you used those elements it'd act the same way as it does now. For your navigation example, screen readers usually look for navigation outside of that element since it's used so infrequently and new. Remember that JAWS (the most widely used screen reading software) for example is like $900 and users of it obviously can't upgrade frequently. Most users are probably on versions that don't even know HTML5 tags. They find links in lists or just a group of links and they also usually have menus of just all the links on the page. In fact, some newer screen readers will guess if you have a group of links with like In the perfect world these tags would make sense, but the majority of the web uses them incorrectly and browsers, including screen readers, have needed to get good at finding these things without semantic markup or these people would be SOL when browsing the web.
As stated above, browsers of all kinds already deal with markup that makes no sense. Basically this adds As for breaking backwards compatibility, how would it break backwards compatibility? I'm honestly confused on that. I'm not saying "hey, browsers, delete all your understanding of HTML<=5". I'm saying "If this is HTML6, parse it this way".
Of course not. Only thing that makes it into these standards is things done by Apple, Google, Mozilla, Microsoft or W3C member himself. It's very rare for anyone outside of those companies to get anything into consideration even. |
BUT @OscarGodson I assume you're trying to get hired by Google or Apple? lol |
Ha, no, I'm pretty happy where I'm at now :) I was employed with MSFT briefly after the Yammer acquisition and I'm not a fan of huge companies like that haha. |
I agree about those companies. I worked for an IT department before Dell took over. As far as specs that rocked it but were by the small guy, all we have to look to is MS-DOS and Linux. About the only thing I would consider changing if this project were mine would be a possible rename to NML (n for namespace) since HTML is so arbitrary (and now even capitalist) on its tags. |
HTML5 is still very new to the web, and conformance will improve with time. I thought one of the goals behind HTML6 was to make the web more semantic, but it seems to me like you're actually giving up on semantics? Your proposal breaks backwards compatibility because HTML6 renderers will not display older versions of HTML at all. Every other version of HTML has kept backwards-compatibility so well that the first webpage still displays fine with HTML5 renderers. Your proposal means that browsers will need two (albeit only slightly different) rendering engines. If this isn't ever going to become a standard, then what are we trying to achieve here? |
So we're on the same page for the definition:
I'm not giving up on it at all. My goal is to take the meaning of tags and let the community as a whole decide on the standards and allow of freedom in the choice. Unspoken standards will form as they always do. We are all using
There isn't even a DOCTYPE associated with that page. HTML6 would require one so that it knew to run as HTML6. Just like XHTML.
Yes, just like they have for XHTML as well as the real XHTML version. XHTML used a slightly different version of HTML and true XHTML used an XML engine. Not sure why that's much of a problem?
From the site:
|
I would say semantics in this context is the meaning of things to a computer, and unspoken standards have no meaning for computers. If HTML6 is incompatible with HTML by design then I agree with @philandy; you should rename it NHTML (Namespaced HyperText Markup Language) or something. To be honest, I think you're wasting your time though. Sorry, I think we'll just have to agree to disagree. |
I just write for myself. I enjoy writing and thinking up ideas. I'm not wasting my time by playing with ideas for myself :) this isn't official, not submitted, and as I say in the conclusion it's just an idea I had. |
Is incorrect tho. Written standards have no more meaning than unspoken ones unless they're told to look for certain things. Like my |
Last thing, I haven't promoted this at all except when I did it the first time. I don't link to it or anything. I'm not entirely even sure how you guys found this :) |
Keep on writing @OscarGodson! You'll never invent something revolutionary if you don't take risks! I support you |
@OscarGodson - who wouldn't be googling for "HTML6"? lol, duh! |
@OscarGodson: Sorry, no harsh feelings. But yeah, it is top of Google for "HTML6" :P How many hits does it get? |
@jb ha, yeah, im amazed its even at the top. Doesn't even have html6.com as the domain. Its like 300 uniques a day without any linkage or anything by me haha. And people, surprisingly, return to the site more than I'd expect. 1/4 are return visitors (I dont even view the site more than once a month) |
@OscarGodson you've been on more lately (thanks to us probably). I personally agree with this logic, but I feel the need to be part of it, like I feel CSS can be assimilated here partially because of the namespaces. Whether this is HTML6, ++ or Namespaced (HT?) ML, I think I want my websites in it. |
Hi there! I have not read all the comments in this thread but I agree with @philandy - NML is a great name! We can rename the language itself to NML but still call it HTML6 to keep popularity :D - and with @OscarGodson - Custom tags rock! <html:head>
<html:semantic tag="b,em,i" means="emphasis" />
<html:semantic tag="title, h1, h2, h3, heading, hgroup" means="header" />
</html:head> |
lol |
@jb OK, I was just trying :D |
@jb And what about
EDIT: Sorry, my fault. Correcting "role tag" to "role attribute". But with HTML6 we're probably breaking what HTML5 was trying to achieve. |
@m93a "tag names would say how the elements should treat and role would say what do they mean" What do you mean? Are you saying that tags should define how an element looks and roles should define their meaning? Surely it should be the other way around? And are you proposing we scrap all of those tags you listed in favour of |
Yeah, not entirely sure I understand what you mean @m93a by "tags say how the elements should treat", but, the physical appearance of anything non-native should all be done by CSS. In HTML6 there wouldn't be a list of elements you could use so most of your list above wouldn't exist (like article, side, header, etc). However, things like bootstrap and stuff would standardize the way certain elements look. Say, |
HTML5 vs HTML6 Tags would be mainly for the styling purposes (instead of the most common uses of class) and browser implemented functionality. Sample page: <!doctype html>
<html:html>
<html:head>
<html:meta charset=utf-8 />
<html:title>MyPage</html:title>
<html:style>
box {
display: block;
}
[role=side] {
width: 300px;
float: left;
}
h {
display: block;
font: 2 rem;
}
list {
display: block;
list-style-type: disc;
}
list > * {
display: list-item;
}
</html:style>
</html:head>
<html:body>
<box role=content>
<article role=article>
<h>MyPage</h>
Lorem ipsum dolor sit amet et cetera...
</article>
</box>
<box role=side>
<list>
<html:link>uno</html:link>
<html:link>dos</html:link>
<html:lind>tres</html:link>
</list>
</box>
</html:body>
</html:html> |
If you want to make it more semantic please see W3C semantc web specifications (ex. http://en.wikipedia.org/wiki/Resource_Description_Framework), Try to integrate HTML with it. IMO web needs to go XHTML to have transformations/querying(XSLT, XQuery) and other benefits that XML has. P.S. As for "more wrtting" when using namespaces check http://www.w3schools.com/xml/xml_namespaces.asp |
Y'all do know that unknown tags are rendered in a standard way in browsers, right? (with the very notable exceptions of the horrible and support-should-be-dropped ie8 and ie7) So if you take html5, and you want to create a totally new element, you can, simple as that. And it has complete backwards and forwards compatibility as long as you're willing to provide a css or javascript shim/polyfill for the functionality. -That- will be the true html6. Finding new purposes that people need simplified into tags, and standardizing them, with new functionality, until we see wide adoption for them. And it's really an untapped potential in html5, too, as the new semantic elements like Some interesting reading: |
@tchalvak The HTML5Rocks article is really cool! Thanks! |
My initial thoughts - I'm not a fan and think it just brings unnecessary mark-up into the equation. |
Whats the benefit of namespacing html tags that way? It just complicates things. You lost me when you wrote this:
XML is a pain in the ass, seriously. Thanks for the effort of writing this spec, but personally, no thanks. We need a new syntax, apart from HTML or something else, we're trying to do this for a long time, HAML it's the most successful attempt to do this but it doesn't please me either. At least, it's worth discussing it, I see this as part of the McDonalds theory. |
@estevaoam: You should try SLIM — it compiles faster and has a nicer syntax than HAML. It does away with all those annoying |
PullPeepMo's small files text rich HTML6 |
html6 |
I LOVE the idea of not having to use divs for everything and being able to write out exactly what we want:
<hereComesMyComplaint>
Why in the world do we need the "html:" call on everything? Isn't it redundant and adding more work for us?
Here's a link today:
Here's the proposed HTML6 way:
Why complicate things unnecessarily?
</hereComesMyComplaint>
The text was updated successfully, but these errors were encountered: