Questions tagged [hyphenation]

190 questions
0
votes
1 answer

CSS hyphenate issues with longer words in Chrome

I am trying to use CSS hyphens to hyphenate long words, such as in this example As you can see the last letter drops on the new line. This happens in Chrome, not for example in Safari. As my layout is using blocks of certain width and I would like…
Jospo
  • 13
  • 4
0
votes
3 answers

Getting Grails not to create packages from hyphenated app names

If I create a Grails app called a-b-c-d, doing a grails create-domain-class User will result in Grails creating a class User in the sub-directory grails-app/domain/a/b/c/d, giving it the package a.b.c.d. How do I prevent Grails from creating these…
oligofren
  • 20,744
  • 16
  • 93
  • 180
0
votes
1 answer

ElasticSearch searching hyphened text with whitespace instead dash on the query

I have indexed data (person) with firstName = "Jean-Marc", and I would like to be able to find this person using a combination of different queries, for example for the firstName "Jean-Marc" it should be possible to search with: "Jean-Marc" and…
rennajihi
  • 443
  • 1
  • 6
  • 17
0
votes
1 answer

WordPress adding hyphen in custom post url

I have created a custom post type in my WordPress application and I want its URL to be separated via Hyphens. For example, The name of the custom post is Singh Across The World and in URL singhacrosstheworld and want it to be…
Mr.Singh
  • 1,421
  • 6
  • 21
  • 46
0
votes
1 answer

Python3 remove multiple hyphenations from a german string

I'm currently working on a neural network that evaluates students' answers to exam questions. Therefore, preprocessing the corpora for a Word2Vec network is needed. Hyphenation in german texts is quite common. There are mainly two different types of…
sreister
  • 1
  • 1
0
votes
1 answer

How to match a rewritten URL string with hyphens to a string that might have 1 hyphen in MYSQL?

I'm rewriting a URL with hyphens using item_name column. for instance animals of the planet-v9 to http://example.com/book/animals-of-the-planet-v9 with str_replace(' ','-',$item_name). How I'm approaching back to MySQL is: $item_name =…
RanaHaroon
  • 445
  • 6
  • 20
0
votes
1 answer

Rails validations format and changing any other characters into hyphens?

I have this model: class Tag < ActiveRecord::Base # Validations validates :name, :presence => true, :uniqueness => true, :format => /[a-z0-9\+\-]+/ end What I want my app to do is to change every character that is not [a-z0-9\+\-] to be…
user142019
0
votes
0 answers

Unable to prevent automatic hyphenation

I'm adding a custom TextView programmatically but I cannot figure out how to prevent automatic hyphenation of some words that begin with a "-" or "/". I'm adding the TextView at some point here: var myTextView = new…
Manu
  • 141
  • 2
  • 13
0
votes
1 answer

hypernator.js: How to only hyphenate words that overflow container?

I'm wondering if there is way, using hyphenator.js, to only hyphenate words that are larger than the container, but leave all other words the way they are. All other words should just break to the next line (if they can fit the…
Jules Colle
  • 11,227
  • 8
  • 60
  • 67
0
votes
1 answer

How to setup Artifactory active directory authentication with tree hyphens via LDAP?

I am trying to set up Artifactory with LDAP authentication. Unfortunately the hostnames of our AD-Servers contain three hyphens. The Artifactory Web Frontend doesn't accept more than one hyphen in the "LDAP URL"…
0
votes
2 answers

Does Zend_PDF module support hyphenation?

I'm looking for iTextSharp like auto hyphenation support in creating PDF. I couldn't find anything related in Zend Docs. Edit I also Googled if this class was ported in PHP but couldn't find anything useful.
understack
  • 11,212
  • 24
  • 77
  • 100
0
votes
2 answers

ABCPDF.Net AddText Control hyphenation

I'm using ABCPDF.net for generating PDF Pages. We've got a problem with the hyphenation system. For example if we add a text with long words using doc.AddText("This is a Verylongwordwhichdoesntfit"); and the Rect is too small, we get: this is a…
user1073694
  • 101
  • 1
  • 3
0
votes
1 answer

Accept Email address with hyphen '-' sign in Opencart?

I am using opencart 2.0 for my website. Facing a problem email field don't accept email address having hyphen '-' sign in the address. For instance email address: abc@def-xyz.com Now in this case it is showing invalid email id.
Vssoft
  • 19
  • 6
0
votes
1 answer

CSS hyphens not appearing in a wrapped word in Firefox 52

I've looked through several questions and forums and have been unable to find an answer. I saw this post, but it's solution didn't work for me. I can confirm this problem is happening for me on both windows and mac Firefox. div { width:…
Kyle Hawk
  • 429
  • 4
  • 16