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
2 answers

css selector order

I am confused as how to properly declare css selectors in terms of performance and web standards Assuming my html markup is
meWantToLearn
  • 1,691
  • 2
  • 25
  • 45
0
votes
2 answers

Difference between different project files in Netbeans

I have in my working environment always more then one project open, some of the have same files but are from different project, and finding out which of them are from which project can be a real pain in the ass(however 2 sec over the div and see…
Sangoku
  • 1,588
  • 2
  • 21
  • 50
0
votes
2 answers

How can I gsub everything until the next empty line?

Given this string: bc. some text more text even more ^ above here is the empty line I want it to be:
some text
more text
even more
^ above here is the empty line How can I regex for "starting from bc. until the first empty…
user569825
  • 2,369
  • 1
  • 25
  • 45
0
votes
1 answer

Error in Google App Engine python imports for CourseBuilder

I am trying to set up a Google CourseBuilder site on a RHEL server. I follow the instructions here and get the server running. However every request errors out with the following message. I have not changed any configuration from the provided…
0
votes
1 answer

Localize ASPX Markup not work

Create a file resources: "Master". Put it in App_GlobalResources dir, Add key - Menu_Contact. Create another file resources: "Master.he". Add key - Menu_Contact. Set thread culture to "he-IL". …
Mosh Feu
  • 28,354
  • 16
  • 88
  • 135
0
votes
2 answers

Cross-platform UI markup language for iOS, Android and WP8?

Are there any cross-platform UI markup languages for major mobile operating systems? I'm mainly looking for a language for describing forms and other interactive elements. HTML won't do because the requirement is that the UI is built using each…
Visa Kopu
  • 695
  • 3
  • 7
  • 20
0
votes
1 answer

How can I charge my merchants (clients) a percent per transaction when their buyers pay them on PayPal?

I have an e-commerce SaaS offering where merchants can come and open their online stores automatically, pretty similar to Shopify. When buyers make transactions on my clients (merchants) stores, how can I charge merchant a certain percent and…
Mutaz
  • 547
  • 4
  • 12
0
votes
1 answer

Parse a document with XPath

I need to parse a document with a structure that I've never seen before. It looks like this: COUNTRY 10 Mi. N. of Midland, 3 bedroom, 2 baths, appliances furnished,…
Brian Reeves
  • 325
  • 1
  • 3
  • 11
0
votes
2 answers

jQuery: copy contents, strip

tags, and create linebreaks

I've succesfully created a behavior that copies the contents of a div container into a textarea field: $('a').click(function() { var contents = $('.content').html(); $('textarea').val(contents); …
Marc P
  • 606
  • 1
  • 11
  • 26
0
votes
2 answers

Trying to embed a DataItem within an asp:Image control's ImageUrl property

I have the following Image control within a repeater. I'm trying to get the username to render in between ~/profilepics/ and .jpg but I get the following rendered…
user76071
0
votes
1 answer

Can I write in WPF a XAML markup trigger to dynamicly assign of value from window control to the variable in the main window class?

Good afternoon. My name is Eugene. First of all I bag your pardon for my poor English. I have the following question. In WPF-application main window I have a TextBox and in XAML markup I describe it as the follow:
user1688773
  • 157
  • 1
  • 3
  • 11
0
votes
1 answer

String with linebreak "\n" in Java => how to convert to markdown?

I have a string in Java: String str = "first line\nsecond line"; This string is fed to a field which reads the daringfireball markdown. \n is not recognized so I use String str = "first line
second line"; However this html markup is quite…
seinecle
  • 10,118
  • 14
  • 61
  • 120
0
votes
2 answers

Too much markup in HTML from Knockout JS

I am learning knockoutjs and noticed my pages contain a lot of markup that seems .. well not sure what it seems. Unnecessary - its necessary for KO to work Excessive - data-bind= needs data to work Code Clutter - lots of markup .. Maybe I am…
Ravi Ram
  • 24,078
  • 21
  • 82
  • 113
0
votes
1 answer

Where to place a custom output converter for wiki markup in PHPDoc

I recently upgraded to phpdoc 2 and want to create a solution for outputting my api to wiki markup, instead of html or pdf. In /usr/share/php5/data/PhpDocumentor/Converters, I see the CHM, HTML, PDF, and XML folders. Is it possible to create a WIKI…
Brett
  • 149
  • 13
0
votes
2 answers

Make html table automatically display td on the next line

I am using html tables in my admin panel. Currently, when the row is large, my table spans out of the container in a small browser window: I would like the table row not to span out of the container when it gets so small that is unable to fit s in…
Maxim V. Pavlov
  • 10,303
  • 17
  • 74
  • 174