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

How can I represent a space at the end of a span of code in markdown?

I'm trying to represent a short inline span of code with a significant space or two at the end, using Markdown. If I were to put it in a stand-alone code block, it might look like this: cd Frustratingly, Markdown transforms `cd ` into…
ʇsәɹoɈ
  • 22,757
  • 7
  • 55
  • 61
0
votes
1 answer

Which markup language is this?

We are using a kind of markup language like this: * Head1 some text here (paragraph) ** Head 2 And for bold we are using this: <<>> For listing from a to z we are using: [[a]] some texts of list [[a]] some other texts of…
Manuela
  • 1,379
  • 3
  • 16
  • 25
0
votes
1 answer

tell wicket:link not to overwrite markup

I'm working on some SVG-Buttons for a User Interface. I have to dynamically create a Link in the java files with some code in it from the markup. The following code is an example of my markup-input. html-markup input:
0
votes
1 answer

Correct HTML5/ARIA markup for collapsable submenus

I'm trying to figure out how to correctly markup up a navigation with collapsable sections using HTML5 and ARIA. This is what I've got so far:
0
votes
0 answers

Best practise store custom websites layout for member profiles in PHP community

I am creating a small private social network community using PHP and MySQL. The thing is that the user profiles will be central and highly customizeable, with custom layout and lots of optional add-ons. I was thinking of a database table, a…
Peter Wirdemo
  • 498
  • 2
  • 11
  • 25
0
votes
0 answers

How link to a title in another document?

I would like to link from within document A to Some Title in document B. I know that I can do this within document B via 'Some Title'_ I know that I can reference document B from document A via :doc:'B' Is there a way to combine both? (I tried…
WoJ
  • 27,165
  • 48
  • 180
  • 345
0
votes
1 answer

Kivy hyperlink in kv file

I am making a mockup of an app just for testing purposes. I am new to kivy and need some help. I want my label to have the text 'Need Help' and when pressed on want it to act as a hyper link. I have a simple class class LoginScreen(BoxLayout): …
Jess Patton
  • 2,476
  • 1
  • 15
  • 26
0
votes
0 answers

Why don't links inherit colours?

When you apply a colour to your page's body via CSS: body { color: #FFA; } The colour is inherited by all sorts of tags such as , , , etc. However it isn't inherited by tags. Why is this?
saricden
  • 2,084
  • 4
  • 29
  • 40
0
votes
1 answer

setting background or background image of a div in asp.net webforms

i have a the following code for a following image path in web project of visual studio solution Folder1\Images\banner.png'
and the css to set the background for this is #placeholder { position:relative; …
Sike12
  • 1,232
  • 6
  • 28
  • 53
0
votes
2 answers

Store web content in XML using wiki markup

Does anyone have an XML style sheet that'll convert wiki-like markup to HTML? Or is that a bad idea? I only found one style sheet that'll convert HTML to wiki-like markup, view-source:http://mozile.mozdev.org/0.8/demos/html2wiki.xsl . Or is this a…
Mike
  • 1
0
votes
2 answers

How to apply jquery to markup that is populated by an ajax call

I am dynamically building out a page depending on what the user selects (ajax calls). The problem is that I am not able to apply any jquery to the markup that is returned. When I run get the page where I want it and run jQuery in the console I get…
Grady D
  • 1,889
  • 6
  • 30
  • 61
0
votes
1 answer

How to make a custom cursor appear on an entire page and not just one small portion

I have seen this, but it does not provide any solution to my programming issues: Custom cursor to entire page This is the CSS Markup: body { height: 100%; width: 100%; padding: 0; margin: 0; background: #000…
Serliek
  • 11
  • 6
0
votes
1 answer

(W3C validator) Error: Element dl is missing a required child element

Help to solve a mistake problem please. Line 1255, Column 7: Element dl is missing a required child element.
I will be very strongly grateful. Thanks and Best Regards. UPD: @Rolice, the open error code looks so...↓
Yudjin Bo
  • 29
  • 1
  • 3
0
votes
3 answers

Javascript - Can't replace "<" word in string

I was doing some javascript while I noticed i can't replace a "<" word inside an html tag such as document.getElementById('label').innerHTML = document.getElementById('label').innerHTML.replace("",…
Kuashe
  • 41
  • 8
0
votes
1 answer

jQuery custom markdown for a blockquote

I want to create my own markdown system for my platform. So, to allow users to make their text bold, they can wrap text in double asterisks. Here is how I do this:
The following will be bold: **I am…
Henrik Petterson
  • 6,862
  • 20
  • 71
  • 155