Moving functionality to MiniDocs.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2024-02-04 18:15:53 -05:00
parent 4bb79f6de0
commit f93091b2b8
1 changed files with 0 additions and 13 deletions

View File

@ -1,18 +1,5 @@
Extension { #name : #String }
{ #category : #'*Grafoscopio-Utils' }
String >> accentedCharactersCorrection [
| modified corrections |
corrections := {
'ó' -> 'ó' . 'ú' -> 'ú' . 'ñ' -> 'ñ' .
'í' -> 'í' . 'á' -> 'á' . 'é' -> 'é' . '’' -> $' asString} asDictionary.
modified := self copy.
corrections keysAndValuesDo: [ :k :v |
modified := modified copyReplaceAll: k with: v
].
^ modified
]
{ #category : #'*Grafoscopio-Utils' }
String >> asCapitalizedPhrase [
"I convert phrases like 'THIS IS A PHRASE' into 'This is a Phrase'."