Markup covers various systems for annotating text with extra information which defines its formatting or appearance. Markup languages include HTML, XML, SGML, and markdown. The markup can typically only be seen when editing a document, not when viewing it.
-1
votes
0answers
34 views
Why does stack overflow use table layout for post content [closed]
I've just spotted that more recent stack overflow posts are marked up within a div but use tables for layout within the div. Inspect this element to see what I mean.
0
votes
0answers
17 views
validate HTML Table Markup
My client wants me to fix a page developed earlier by some coder which has a totally invalid <table> structure (at least, i'm sure about it). Its a huge file, has a lot of nested tables, totally ...
0
votes
3answers
22 views
How to proportionally fill a space around a fixed size div?
Could someone please help me?
I have three divs. The one in the middle should always be 1040px. The left and right one shall fill the whole left space. How can I make them proportionally grow/shrink ...
0
votes
3answers
23 views
Add class to each level of ul li using jquery
Well, i have this nested ul, wich are parent -> child -> (grand)child levels,
how can I use jquery to spot every level adding a class to it so i can style each level differently?
(would be something ...
-5
votes
0answers
35 views
Convert X to HTML and back again?
What are all the markup languages out there that have scripts to automatically convert to HTML and then from HTML back to the markup language WITHOUT ANY DIFFERENCE IN CODE?
So if I have ...
1
vote
1answer
14 views
Orphaned LI elements inside a DIV in IE beak layout
In a CMS-like system users are allowed to enter HTML content and in a lot of pages they used markup similar to this:
<div>
<p>
<li>Item 1</li>
<li>Item 2</li>
...
0
votes
1answer
21 views
Invalid markup with all my div classes when using php in dreamweaver
First things first: I'm no pro.
I just started slapping together a sub site for my company using Dreamweaver CS6 and learning (crash coursing) a lot about HTML - and I know there's going to be ...
0
votes
0answers
28 views
Is there a lightweight markup language that is well-suited for non-technical forums? [closed]
At the moment I am developing a forum application to be used by a non-technical audience. However, I haven't found an ideal formatting language yet. All available languages seem to have their ...
0
votes
0answers
16 views
Two-way One-to-One Code Translation like Coffeescript
What are all the programming OR templating/markup languages you know of (for any platform) that are one-to-one mappings from one language to another (the mapping is reversible without changing the ...
0
votes
1answer
31 views
Regular expression to replace “escaped” characters with their originals
NOTE: I'm not parsing lots of or html or generic html with regex. I know that's bad
TL;DR:
I have strings like
A sentence with an exclamation\! Next is a \* character
Where there are "escaped" ...
0
votes
2answers
40 views
put canvas to the specific place on page
How can i put canvas into the specific place on page? For example, I want to locate canvas inside the ascii "TV screen". How can i do that?
Thanks
o
...
0
votes
1answer
21 views
Dreamweaver configurate text in one big line
Hello I am using dreamweaver for HTML and I have a question about the "markup" of dreamweaver. When I have lets say 1000 characters in a p tag dreamweaver "sorts" it and it gives it new lines while I ...
0
votes
2answers
55 views
Wicket visiblity and class toggle
I'm learning Wicket and now I'm struggling with how to do a sidebar menu.
<ul class="nav nav-tabs nav-stacked">
<li><a wicket:id="linkA">A</a></li>
<li ...
0
votes
0answers
9 views
Is there a markup -> documentation tool that supports hiding/unhiding sections?
I'm looking for a documentation tool along the lines of scribble or sphinx that supports collapsible/expandable hidden blocks inline in the text. The use case is for writing tutorials, so that I can ...
2
votes
1answer
114 views
ASP.NET MVC4 Drop Down List in Create View For Model
I am trying to create a drop down list within my create view. For example, I want the drop down selection "AM" to map to the value "0" for the "Wednesday" property within my model. So far, I have this ...