Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hmt/awakening
The Awakening
https://github.com/hmt/awakening
Last synced: about 2 months ago
JSON representation
The Awakening
- Host: GitHub
- URL: https://github.com/hmt/awakening
- Owner: hmt
- Created: 2013-02-17T13:31:10.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-29T11:10:17.000Z (over 11 years ago)
- Last Synced: 2023-03-18T04:31:03.123Z (almost 2 years ago)
- Size: 234 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#The Awakening by Kate Chopin
This beautiful novel has its dedicated repository here on GitHub.
I'll subsequently add new files with special features like:
* proper quotes and dashes
* Latex file with sections and all
* whatever else comes to my mindAs long as it doesn't clutter the Readme I'll add information about the process here.
The original text was taken from Project Gutenberg, stripped and reduced to its original text.
###Converting quotes, dashes etc
In order to get the nice typographical features I used a Ruby gem:require 'rubypants-unicode'
file = File.open("awakening.txt", "r")
text = file.read
File.open('awakening_smart.txt', 'w') do |f|
f.puts RubyPants.new(text, 2).to_html
end