Sal Ferrarello

Results 75 comments of Sal Ferrarello

I don't anticipate submitting a PR for this in the immediate future due to a combination of this change being more complex than I additionally identified and my current time...

## How to Test Run the site locally with `jekyll server` and view the root page at http://127.0.0.1:4000/ ### Before PR The tags section renders an empty tag button. ###...

@curtismchale Interesting that you've noticed this in the last few days. In my mind this bug has been around for awhile (possibly since I started using this config) and I...

I've got this working now and I integrated it into a project I have that includes other git enhancements. https://github.com/ironcodestudio/ironcode-git-enhancements

I agree that `code to a contract` typically means, type hinting to interfaces (not abstract classes), which means that type hinting to `Plugin` (an abstract class) would go against this....

I've opened a new PR (#82) that implements @bradyvercher's requested changes.

The [wp user update documentation](https://developer.wordpress.org/cli/commands/user/update/) says the command accepts a number of parameters including the generic ``` --= ``` which is described as > One or more fields to update....

This same behavior occurs with other update commands, e.g. The correct version ``` wp post update 1 --post_title="New title" ``` and a version with a typo (underscore `_` is replaced...

The [Jekyll Post Tags Documentation](https://jekyllrb.com/docs/posts/#tags) says > Since Jekyll expects multiple items mapped to the key tags, it will automatically split a string entry if it contains whitespace. however the...

This line should find all of the files that have a comma in the `tags:` and remove it. ``` grep -rl '^tags:.*,' ./_scripts | xargs sed -i '' '/^tags:/s/,//g' ```...