GithubHelp home page GithubHelp logo

Comments (7)

gaborcsardi avatar gaborcsardi commented on June 12, 2024

I think it may be possible by defining a as.character.crayon method that just outputs the escapes for the crayon object (if any).

You mean like this?

library(crayon)
start(red)
#> [1] "\033[31m"
finish(red)
#> [1] "\033[39m"

from crayon.

gaborcsardi avatar gaborcsardi commented on June 12, 2024

Oh, I see what you mean

from crayon.

jimhester avatar jimhester commented on June 12, 2024
as.character.crayon <- function(x, ...) {
  start(x)
}

Does work, but you need to reset at the end.
screenshot 2017-04-27 09 19 17

from crayon.

gaborcsardi avatar gaborcsardi commented on June 12, 2024

I think it is a bit awkward that you need to reset. No?

from crayon.

jimhester avatar jimhester commented on June 12, 2024

A bit yeah, but I don't see an easy way to avoid it without complicating the glue parsing a good bit

from crayon.

gaborcsardi avatar gaborcsardi commented on June 12, 2024

I think it is a good idea, but compared to

glue::glue(blue("foo"), red("bar"), "baz")

the proposed

glue::glue("{blue}foo{red}bar{reset}baz")

is not much better imo. But we probably just need better examples for motivation, I think. Examples that actually use substitution.

from crayon.

jimhester avatar jimhester commented on June 12, 2024

I think the main benefit is you don't have to deal with quoting and unquoting in longer text.

glue("{red}Warning:{reset} this is a warning message") 

# Or
glue("
{bold}A title of a very important piece{reset}

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore
 et dolore magna aliqua. {blue}Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris 
nisi ut aliquip ex ea commodo consequat. {green}Duis aute irure dolor in reprehenderit in voluptate 
velit esse cillum dolore eu fugiat nulla pariatur. {red} Excepteur sint occaecat cupidatat non 
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.{reset}
")

The resets are a bit of a pain, but not too bad...

from crayon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.