-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
88 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "Readability" | ||
uuid = "4455ec5f-b558-4ef1-b6d8-c3694046c382" | ||
authors = ["Ceco E. Maples <[email protected]>"] | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
|
||
[compat] | ||
julia = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
module Readability | ||
|
||
export reading_time, speaking_time | ||
export characters, sentences, syllables, | ||
words, complex_words, polysyllabic_words, difficult_words, | ||
lines, paragraphs | ||
export characters, characters_per_word | ||
export syllables, syllables_per_word | ||
export words, words_per_sentence | ||
export sentences, sentences_per_paragraph | ||
export lines, paragraphs | ||
export ARI | ||
export ColemanLiau | ||
export DaleChall | ||
export FleschKincaidGradeLevel, FleschReadingEaseScore | ||
export GunningFog | ||
export SMOG | ||
export Spache | ||
export DaleChall, Spache, difficult_words | ||
export FleschKincaidGradeLevel, FleschReadingEase | ||
export GunningFog, complex_words | ||
export SMOG, polysyllabic_words | ||
|
||
include("counts.jl") | ||
include("time.jl") | ||
|
||
include("ari.jl") # Automatic Readability Index | ||
include("coleman-liau.jl") | ||
include("counts.jl") | ||
include("dale-chall.jl") | ||
include("fkgl.jl") # Flesch-Kincaid Grade Level | ||
include("fres.jl") # Flesch Reading Ease Score | ||
include("gunning_fog.jl") | ||
include("smog.jl") # Simple Measure of Gobbledygook | ||
include("spache.jl") | ||
include("time.jl") | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters