Sanitizing strings for file names readability.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2025-04-01 08:42:46 -05:00
parent 31efcd11b2
commit b5a5c43125

View File

@ -194,6 +194,11 @@ String >> startsWithYAMLMetadataDelimiter [
]
{ #category : #'*MiniDocs' }
String >> withoutPunctuationMarks [
^ self copyWithoutAll: #($? $¿ $: $! $, $( $))
]
{ #category : #'*MiniDocs' }
String >> withoutXMLTagDelimiters [
^ self copyWithoutAll: #($< $>)