Skip to contents

Replace non ASCII characters with ASCII equivalents [Experimental]

Usage

parse_dict(dict)

Arguments

dict

A dictionary. See vignette('labeler', package = "labeler") for details.

Value

A dictionary with all non ASCII characters replaced with ASCII

Examples

if (FALSE) {
   dict = list(
             MARRIED = list(
               "Sí" = 1,
               "No" = 2
             )
           )
   parse_dict(dict)
 }