1
vote
1answer
17 views
Is the concept of a link inseparable from its html markup?
I'm looking for a strategy for managing links within articles. The body of the article is saved in a database and pulled during page assembly. What all should be saved in the data …
1
vote
2answers
30 views
How do you put html or xml into a yaml?
I would like to store html snippets inside a yaml file, what is the best way to do that?
something like:
myhtml: |
<div>
<a href="#">whatever</a>
</d …
1
vote
3answers
37 views
Building a markup parser in php
I have created a very simple markup parser in php. However, it currently uses str_replace to switch between markup and html. How can I make a "code" box of sorts (will eventually u …
0
votes
1answer
18 views
XML: Milestones or Elements that cross other elements
I'm working with OSIS (Open Scriptural Information Standard), an XML schema for describing scripture and related text. When I first looked at a sample of the XML I noticed some odd …
0
votes
3answers
50 views
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 e …
3
votes
3answers
63 views
What html markups to use for displaying label/value data ?
I want to render a profile user container that contains a list of labels and their associated values.
Here is an excerpt of information and layout I'd like to display:
First Name …
0
votes
2answers
39 views
How to use Regular Expression pattern to replace markup with unquoted attributes values
Consider the following markup
<p align=center width='100' height=\"200\" attr=test>aasasd</p>
In order to make this markup valid i want to wrap quotes where they are …
0
votes
3answers
81 views
How to Parse Some Wiki Markup
Hey guys, given a data set in plain text such as the following:
==Events==
* [[312]] – [[Constantine the Great]] is said to have received his famous [[Battle of Milvian …
5
votes
5answers
153 views
Forms: Does your css accomodate your markup or vice versa?
Regarding html forms, a very common markup pattern is:
<form ...>
<p>
<label>Name:</label>
<input .../>
</p>
<p>
<la …
0
votes
2answers
41 views
Original Markup inInternet Explorer in Range / Selection
I am extracting content selected by the user via this function:
function getSelectionHTML() {
var userSelection;
if (window.getSelection)
{
// W3C Ranges
userSelect …
0
votes
4answers
38 views
How to use extensions and utility methods in markup?
Ok. This is probably a really stupid question, but I'm going to ask it anyway...
How can I use extensions and utility methods in my ASP.Net markup? For example, (say) I have a Dat …
1
vote
2answers
177 views
Theming Drupal Panels
I created a homepage layout using Panels 3, mostly of blocks created by Views.
Now I'd like to apply the visual look and feel as it was designed & sliced. Panels adds an seri …
3
votes
7answers
483 views
PHP: Truncate HTML, ignoring tags
I want to truncate some text (loaded from a database or text file), but it contains HTML so as a result the tags are included and less text will be returned. This can then result i …
3
votes
7answers
196 views
Why is there no standardized wiki markup language?
For as many wiki tools as I have used, each time I must learn yet another markup language. Why doesn't wiki markup get standardized like HTML, XSLT, SVG, and other web languages?
0
votes
2answers
94 views
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 output
/profilep …
