hyphenation Questions
8
Solved
I'm looking to prevent a line break after a hyphen - on a case-by-case basis that is compatible with all browsers.
Example:
I have this text: 3-3/8" which in HTML is this: 3-3/8”
The p...
Embolus asked 7/10, 2011 at 18:46
3
Solved
How do I get words to break correctly to new lines in Android with Jetpack Compose? I know the functionality from the web, where I use ­ for such cases.
I defined string values with possibl...
Darn asked 20/10, 2022 at 6:49
4
Solved
I am trying to word-wrap an email address within a div, where otherwise it would overflow because it's too long for the div's width.
I know this issue has been covered here before (e.g. this quest...
Sidonius asked 21/8, 2012 at 13:26
3
Solved
I have an array like:
Array
(
[0] => Jan
[1] => Feb
[2] => Mar
[3] => Apr
[4] => May
[5] => Jun
[6] => Sep
[7] => Oct
[8] => Dec
)
I need to convert it to
A...
Blatant asked 12/7, 2013 at 12:35
1
I'm using a TextView extension class which writes a String like a typewriter, character per character. It works fine but when is writing a word which not fit in the current line, it makes a annoyin...
Pachton asked 13/2, 2017 at 22:56
10
Solved
In a LaTeX document I'm writing, I get an overfull hbox warning because of the word "multi-disciplinary", which happens to be rendered at the end of a line.
I can get rid of this particular warnin...
Psychodynamics asked 3/2, 2010 at 16:2
3
Solved
I am trying to compact an expression of individual days into a shorter expression including hyphen-separate ranges.
Examples:
mon,tue,wed,thu,fri,satto be:mon-sat
mon,tue,wed,fri,satto bemon-wed,f...
Zwieback asked 10/5, 2011 at 2:15
6
Solved
I have a little layout problem: on a clients website, we show contact information of people in a little box. The width of that box is constrained. As it happens, there are people with very long nam...
Nun asked 18/2, 2011 at 8:4
6
Solved
How do I set a UILabel lineBreakMode to break words and add hyphens to broken words?
a label with a broken wo-
rd should look like this
Gerontology asked 24/9, 2013 at 10:49
0
What is wrong with this code that hyphenations don't work for lang="en"?
h1 {
font-size: 2em;
hyphens: auto;
}
div {
max-width:200px;
background: aqua;
}
<div>
<h1 lan...
Harden asked 12/10, 2021 at 19:3
17
Solved
I need to find a fairly efficient way to detect syllables in a word. E.g.,
Invisible -> in-vi-sib-le
There are some syllabification rules that could be used:
V
CV
VC
CVC
CCV
CCCV
CVCC
*where V ...
Glarum asked 1/1, 2009 at 17:8
2
<Text>
Aufmerksamkeits{'\u00AD'}defizit
</Text>
This leads iOS to
Aufmerksamkeits-
defizit
But on Android to
Aufmerksamkeitsd
efizit
So it seems that Android ignores the given soft...
Scend asked 14/10, 2019 at 11:46
2
Solved
I have a keyword argument function:
def f1(**kw):
for key,val in kw.iteritems():
print "key=%s val=%s" % (key,val)
f1(Attr1 = "Val1", Attr2 = "Val2") # works fine.
...
Aculeus asked 9/6, 2014 at 13:23
1
Good day everyone. I have a problem with displaying hyphenated justified text using TextKit with a textview.
I've tried to make hyphenation through paragraph style and NSLayoutManager, but without ...
Michealmicheil asked 1/6, 2020 at 22:18
2
Solved
I would like to implement client-side hyphenation via JavaScript on some large texts on my site. (I know about CSS3 hyphenation and will use it instead when available, but it's usually not availabl...
Davidoff asked 2/6, 2013 at 19:7
4
Solved
I am attempting to use CSS Hyphens. They work in IE 11 and Safari but does not work in Firefox properly and I am unsure why. Here is an example:
.container{
width: 16.6667%;
background:#c...
Patrilocal asked 11/3, 2015 at 0:29
2
Solved
Is it possible to use hyphens, or soft-hyphens in CSS, in such a way that hyphens are not rendered unnecessarily?
My goal is to keep the original text as much as possible and break any words unless...
Gorlicki asked 11/1, 2018 at 14:33
0
I was trying to adding hyphenation on breaking long words in TextView. For example, I have a textView which text is "Recommendations". Because the word is too long for one line, I want to...
Ferity asked 8/11, 2017 at 23:46
3
Solved
How can I activate automatic hyphenation in iOS?
I have tried to set the hyphenation factor to 1 in the attributed text options of an UILabel, however I don't get any hyphens though.
Unwind asked 31/10, 2013 at 14:39
6
As part of internationalizing an Android application I have come across the need to dynamically word wrap or hyphenate at the right position.
All my strings are externalized in strings.xml files b...
Eurypterid asked 15/12, 2010 at 21:9
4
Solved
I want to break a text with hyphenation, but it brings an error:
It says: "Invalid property value".
But in many docs they say, that the "auto" value exists!
It should break t...
Johannejohannes asked 20/9, 2017 at 6:3
1
Solved
According to this link not only FireFox but also Internet Explorer should support the use of automatic hyphenation in css/html, however my demo (using the Dutch language, which is supported by IE)....
Outface asked 13/11, 2015 at 0:27
1
I'm struggling with the different ways browsers handle hyphenation for justified text from line to line. I have the following css settings for my text:
text-align: justify;
-webkit-hyphens: auto;
...
Pycnidium asked 5/11, 2015 at 20:38
4
Solved
My client has requested to enable auto-hyphenation on this page: http://carlosdinizart.com/biography/ , and I realized I've never actually seen it done on a web-page.
Is it possible to set up aut...
Brochu asked 20/1, 2012 at 6:30
0
Attribute(s) for a polymer element can be defined as attributes="toggle-foo", defaulted within the Polymer definition as 'toggle-foo':false and used elsewhere in the Polymer definition like if( thi...
Colliery asked 3/7, 2014 at 15:49
1 Next >
© 2022 - 2024 — McMap. All rights reserved.