1,384 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
166
views
Delphi WebStencils not allowing HTML code output for the keywords
When I process a keyword like this:
In the HTML template I have:
<p>@msg</p>
and in code I have:
if SameText(AObjectName, 'msg') then
AValue := 'Must be Logged In<br />This was ...
0
votes
2
answers
123
views
Use xmlstarlet and XPath to find/replace HTML entities in an XML node
I have content in the XML node <content type='html'> which uses the HTML entities < and > for < and > , i.e. in input.xml:
<?xml version='1.0' encoding='utf-8'?>
<...
2
votes
3
answers
141
views
Looking for a custom Unicode character in HTML
I need to display a particular character in a webpage, but I have been unable to find anything online for it.
I need a gamma character with a dot on top of it. This is the closest I can get:
<p> ...
-2
votes
2
answers
79
views
Why is javascript treating ' as an apostrophy in a function call?
I have a table and when I click on the table row with the HTML entity " in it, the function fires fine, but when I click on the row with the ' in it, I get an error in the console of
...
-1
votes
1
answer
56
views
Converting old XML file with XSLT that have missing html entities
I'm trying to create a project that will convert the XML file with Jargon File into a smaller XML file with just the definitions and few tweaks. I have an old project where it seems I modified the ...
0
votes
0
answers
63
views
Prevent & to & Translation in Ansible community.general.xml
I am using Ansible's community.general.xml to modify a file. I want to set the following
<Connector relaxedQueryChars="[]|{}^\`"<>"/>
The ...
0
votes
0
answers
150
views
How to unescape HTML entities in Java?
In my database, I have a escaped HTML string that contains, among other HTML Entities, 𝐿.
If I display it in a HTML file, I can see the symbol that I expect: L.
According to https://www....
0
votes
1
answer
55
views
How do I unescape HTML entities in a Pandas Series?
This
Estamos com problema de conexão na loja Serrana Fortaleza, estamos somente por um link, Embratel. E Dnat criado não esta funcionando precisamos de ajuda por favor.
Must be ...
1
vote
1
answer
70
views
Rails: How to render a string containing both user input and added HTML entities (composed in a model method)?
While the below model method technically works, it is not safe, because name and profession is user input:
def name_with_html_entities
"#{name} • #{profession}".html_safe
end
So ...
0
votes
0
answers
47
views
How to remove HTML entities when Decoding JSON? [duplicate]
In Swift, I am trying to convert HTML entities that are coming back from an API that I am using. Does JSONDecoder have something that can do this?
class SoloViewModel: ObservableObject {
@...
-2
votes
2
answers
48
views
jQuery - Targeting a checkbox with a value containing double quotes
I am attempting to pre-populate a form which has inputs with values I am not able to change. One of the fields is a series of checkboxes and some of the values contain double quotes to represnt inches....
1
vote
2
answers
73
views
Html entities converrsion in onchange function in php
When I try to pass variables to check_holiday_dates_on_application I want them to be surrounded by ' in the site html. This is what my code looks like:
'onchange' => 'return ...
1
vote
2
answers
214
views
Is it valid to write '<' and '>' in HTML5 with spaces surrounding them or must they always be written as HTML entities?
Is the following valid HTML5?
<p>1 < 2</p>
<p>2 > 1</p>
Or must this always be written using HTML5 entities like this?
<p>1 < 2</p>
<p>2 >...
0
votes
2
answers
76
views
fgetcsv() with html entities in csv string
I parse CSV string and recieve wrong number of columns and i think its because of html entities like this %2C%20.
I recieve wrong number of columns and i think its because of html entities like this %...
0
votes
1
answer
238
views
OpenSP - Convert SGML to XML declaring html entity
On Windows 10, I use osx.exe from OpenSP in order to convert a SGML file to XML.
In the SGML, there are html entities as – é and a lot more.
The parser forces me to ...