Questions tagged [markup]

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.

Markup covers various systems for annotating text with extra information which defines its formatting or appearance. Markup languages include , , , and .

The markup can typically only be seen when editing a document, not when viewing it.

1350 questions
0
votes
4 answers

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for the web? I mean, with a predefined list of…
Legend
  • 113,822
  • 119
  • 272
  • 400
0
votes
1 answer

CSS correct sub-div's alignment in div

I have the next issue with my CSS styling: http://s8.postimg.org/p26jl39fp/Screenshot_571.png I want to align the inputs (which each input placed in own div) in the middle of my form. The HTML markup for the form: http://ideone.com/lWYswC (just…
user2402179
0
votes
1 answer

Processing markup tags with java regex

I have received a text that contains some markup tags. For example: Jane and Jack went to cinema. My objective is to convert this sentence to: Jane and Jack {blank} to {blank}. When I use the following…
Burak
  • 15
  • 1
  • 3
0
votes
3 answers

Python regex to print all sentences that contain two identified classes of markup

I wish to read in an XML file, find all sentences that contain both the markup and the markup , then print those entire sentences to a unique line. Here is a sample of the code: import re text = "Cello is a wonderful…
duhaime
  • 25,611
  • 17
  • 169
  • 224
0
votes
2 answers

How to use Regular Expression pattern to replace markup with unquoted attributes values

Consider the following markup

aasasd

In order to make this markup valid i want to wrap quotes where they are required. From the above exmaple i want to apply quotes so the markup will be:
Anton P
0
votes
1 answer

How to edit Wiki Markup more efficiently?

I'm adding a simple table into our project's wiki page and I'm just wondering whether there is way for the table to have the auto-fill capability like Excel. For ex., auto generating index for all the rows, or fill specific column a same value for…
Derek
  • 1,085
  • 2
  • 20
  • 36
0
votes
3 answers

How to proportionally fill a space around a fixed size div?

Could someone please help me? I have three divs. enter code here 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 when I resize the…
christophe
  • 692
  • 4
  • 14
  • 27
0
votes
3 answers

Add class to each level of ul li using jQuery

I have this nested ul, which are parent -> child -> (grand)child levels. How can I use jQuery to spot every level adding a class to it so that I can style each level differently? would be something like: I couldn't do it with CSS because it needs…
user1576978
  • 1,763
  • 1
  • 14
  • 27
0
votes
1 answer

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 multiple pages that my navbar is going to constantly be…
0
votes
2 answers

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 o / \ / …
ysokolovsky
  • 425
  • 1
  • 6
  • 16
0
votes
1 answer

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 just want those 1000 characters in one line.…
Niek Jonkman
  • 477
  • 4
  • 11
  • 23
0
votes
2 answers

Wicket visiblity and class toggle

I'm learning Wicket and now I'm struggling with how to do a sidebar menu.
Jakub Kulhan
  • 1,572
  • 2
  • 16
  • 37
0
votes
1 answer

jquery mobile : how to manage the initialisations of selects and inputs after a $.mobile.changePage

I am developping a single page app, and I inserted a splash screen that disappears after a few seconds. But then, when the next page loads I have a problem handling the select and the ìnput range. I figured I could force their initializations ...but…
Louis
  • 2,548
  • 10
  • 63
  • 120
0
votes
1 answer

changing plaintext tags into HTML tags to display in browser in python

ok so I'm writing a function in python which takes a text document which is tagged with tags like ===, ==, ---, #text# etc. etc. (alot like wikipedia). Now my program basically has to replace those with HTML tags such as &ndash, &mdash, <>text etc.…
user2368457
  • 75
  • 1
  • 1
  • 7