Skip to content
  • dardyfella's avatar
    fix: Improved parsing and handling of backslashes · 843f59ef
    dardyfella authored and Michael Aaron Murphy's avatar Michael Aaron Murphy committed
    Fixes the issue where:
    
    ```
    let arg = todo
    echo -e "\n\n$arg"
    ```
    
    Returns:
    
    ```
    
    ntodo
    ```
    
    Instead of:
    
    ```
    
    todo
    ```
    
    ---
    
    Fixes issue where:
    
    ```
    echo -e "one\\\\\ntwo\\\\\nthree"
    ```
    
    Returns:
    
    ```
    one\\ntwo\\nthree
    ```
    
    Instead of:
    
    ```
    one\
    two\
    three
    ```
    843f59ef