![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
= RubyPants: SmartyPants for Ruby
{}[https://rubygems.org/gems/rubypants]
{
}[https://travis-ci.org/jmcnevin/rubypants]
{
}[https://codecov.io/gh/jmcnevin/rubypants]
== Synopsis
RubyPants is a Ruby port of the smart-quotes library SmartyPants.
The original "SmartyPants" is a free web publishing plug-in for Movable Type, Blosxom, and BBEdit that easily translates plain ASCII punctuation characters into "smart" typographic punctuation HTML entities.
== Description
RubyPants can perform the following transformations:
This means you can write, edit, and save your posts using plain old ASCII straight quotes, plain dashes, and plain dots, but your published posts (and final HTML output) will appear with smart quotes, em-dashes, and proper ellipses.
RubyPants does not modify characters within
,, , , or tag blocks. Typically, these tags are used to display text where smart quotes and other "smart punctuation" would not be appropriate, such as source code or example markup.
== Installation
gem install rubypants
Or, in your application's Gemfile:
gem 'rubypants'
== Example of Usage
RubyPants.new("String with 'dumb' quotes.").to_html
For additional options, consult the documention in lib/rubypants/core.rb.
== Backslash Escapes
If you need to use literal straight quotes (or plain hyphens and periods), RubyPants accepts the following backslash escape sequences to force non-smart punctuation. It does so by transforming the escape sequence into a decimal-encoded HTML entity:
\ " ' . - `
This is useful, for example, when you want to use straight quotes as foot and inch marks: 6'2" tall; a 17" iMac. (Use 6'2" resp. 17".)
== Algorithmic Shortcomings
One situation in which quotes will get curled the wrong way is when apostrophes are used at the start of leading contractions. For example:
'Twas the night before Christmas.
In the case above, RubyPants will turn the apostrophe into an opening single-quote, when in fact it should be a closing one. I don't think this problem can be solved in the general case--every word processor I've tried gets this wrong as well. In such cases, it's best to use the proper HTML entity for closing single-quotes ("’") by hand.
== Bugs
To file bug reports or feature requests, please create an issue in this gem's GitHub repository.
If the bug involves quotes being curled the wrong way, please send example text to illustrate.
== Authors
John Gruber did all of the hard work of writing this software in Perl for Movable Type and almost all of this useful documentation. Chad Miller ported it to Python to use with Pyblosxom.
Christian Neukirchen provided the Ruby port, as a general-purpose library that follows the *Cloth API.
Jeremy McNevin posted this code to GitHub ages ago, but has recently been trying to improve it where possible.
Aron Griffis made jekyll-pants[https://github.com/scampersand/jekyll-pants] which depends on RubyPants, and consequently jumped in to help out with issues and pull requests.
== Links
John Gruber :: http://daringfireball.net SmartyPants :: http://daringfireball.net/projects/smartypants Chad Miller :: http://web.chad.org Christian Neukirchen :: http://kronavita.de/chris Aron Griffis :: https://arongriffis.com
FAQs
Unknown package
We found that rubypants demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.