I'm building a website, but don't want to write any HTML (or XML). I was thinking that I could use a nicer markup language instead.

I've looked at Markdown and reStructuredText, but they don't support all the HTML "features" I need. Are there any markup languages that I could use instead of writing a lot of intricate HTML, or do I need to invent something myself? (I'm looking for something available in Python)

EDIT

I want to create arbitrary HTML structures with arbitrary content (nesting, random attributes, etc.). Also a simple readable syntax for tables would be nice.

Under the term niceness I mean: I want it to be more human readable (less crud) and less verbose (less typing). Indenting instead of manually closing tags would be nice.

EDIT2

I wasn't looking to replace HTML: I just wanted to write something else and then convert to it at runtime.

link|improve this question

1  
Niceness is a subjective concept, and we don't know what features you need. – Quentin Jul 8 '11 at 19:06
What specific features are you after? You say HTML is too much and Markdown is too little - where's your happy medium? – Tak Jul 8 '11 at 19:07
3  
I hope you brought your flamesuit. – Radu Jul 8 '11 at 19:08
1  
Yes, definitely. You should invent something yourself. Make sure Microsoft, Google, and Mozilla know ahead of time. They need time to adapt to your new language. ;) – George Jul 8 '11 at 19:09
1  
Why is there so much hate here? Perfectly valid question, perhaps a bit poorly worded. – Jani Hartikainen Jul 8 '11 at 19:14
show 4 more comments
feedback

closed as not constructive by Quentin, mingos, bernie, C. A. McCann, George Jul 8 '11 at 19:12

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

As far as I know, there aren't really many alternatives for writing actual website structural markup in other languages than HTML.

The only thing that I've heard of is Haml, HTML Abstraction Markup Language. It's a short and concise markup language which translates directly into HTML markup, so perhaps it's worth a look?

The only other option I can think of is using some sort of monstrous hybrid of XSLT and HTML, which I don't think is any good at all except for making your brain hurt.

link|improve this answer
I'm building a website, but don't want to write any HTML (or XML). I think XSLT is out of the question here, @Jani – George Jul 8 '11 at 19:13
@George yeah I only mentioned it because it's the only other alternative besides Haml that I could think of :) – Jani Hartikainen Jul 8 '11 at 19:15
I've heard of Haml, never looked into it though. Looks great, maybe it's just the thing I need. Thanks! – akosch Jul 8 '11 at 19:21
If someone else is interested: through Haml I found markaby, which is pretty interesting (en.wikipedia.org/wiki/Markaby) – akosch Jul 8 '11 at 19:29
feedback

You can't build a working website without HTML, seeing as the implementation isn't inside browsers like Firefox, Chrome, etc. Markdown and reStructuredText are simply markup syntax processors (just like BBCode for example).

Now on to the other good stuff. If you want to build a dynamic website using Python, you can use Django (which is a Python web framework). The Django book should also help you out a lot, in conjunction with the Django documentation.

Django DOES have a templating system which does make HTML coding nicer (TONS nicer) however.

To learn HTML and JS, I suggest using W3Schools. Warning though! Some of their information IS incomplete and inaccurate (see W3Fools for this).

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.