499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
|
return "_"
_xNormalizedCharsForInclusiveWriting = str.maketrans({
'(': '_', ')': '_',
'.': '_', '·': '_',
'–': '_', '—': '_',
'/': '_'
})
def normalizeInclusiveWriting (sToken):
"typography: replace word separators used in inclusive writing by underscore (_)"
|
|
|
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
|
return "_"
_xNormalizedCharsForInclusiveWriting = str.maketrans({
'(': '_', ')': '_',
'.': '_', '·': '_', '•': '_',
'–': '_', '—': '_',
'/': '_'
})
def normalizeInclusiveWriting (sToken):
"typography: replace word separators used in inclusive writing by underscore (_)"
|