Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Render special list items #323

Merged
merged 2 commits into from
Oct 24, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## Master

##### Breaking

* None.

##### Enhancements

* Render special list items (e.g. Throws, See, etc.). See
http://ericasadun.com/2015/06/14/swift-header-documentation-in-xcode-7/ for
a complete list.
[JP Simard](https://github.com/jpsim)
[#317](https://github.com/realm/jazzy/issues/317)

##### Bug Fixes

* None.


## 0.3.2

##### Breaking
Expand Down
294 changes: 294 additions & 0 deletions lib/jazzy/assets/css/jazzy.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,56 @@ $code_font: 0.95em Menlo, monospace;
$gray_border: 1px solid #e2e2e2;
$declaration_swift_border: 5px solid #cde9f4;

// Asides
$aside_attention_color: #aaa;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

probably worth making #aaa a var too

$aside_attention_border: 5px solid lighten($aside_attention_color, 20%);
$aside_author_color: #aaa;
$aside_author_border: 5px solid lighten($aside_author_color, 20%);
$aside_authors_color: #aaa;
$aside_authors_border: 5px solid lighten($aside_authors_color, 20%);
$aside_bug_color: #aaa;
$aside_bug_border: 5px solid lighten($aside_bug_color, 20%);
$aside_complexity_color: #aaa;
$aside_complexity_border: 5px solid lighten($aside_complexity_color, 20%);
$aside_copyright_color: #aaa;
$aside_copyright_border: 5px solid lighten($aside_copyright_color, 20%);
$aside_date_color: #aaa;
$aside_date_border: 5px solid lighten($aside_date_color, 20%);
$aside_experiment_color: #aaa;
$aside_experiment_border: 5px solid lighten($aside_experiment_color, 20%);
$aside_important_color: #aaa;
$aside_important_border: 5px solid lighten($aside_important_color, 20%);
$aside_invariant_color: #aaa;
$aside_invariant_border: 5px solid lighten($aside_invariant_color, 20%);
$aside_note_color: #aaa;
$aside_note_border: 5px solid lighten($aside_note_color, 20%);
$aside_parameter_color: #aaa;
$aside_parameter_border: 5px solid lighten($aside_parameter_color, 20%);
$aside_postcondition_color: #aaa;
$aside_postcondition_border: 5px solid lighten($aside_postcondition_color, 20%);
$aside_precondition_color: #aaa;
$aside_precondition_border: 5px solid lighten($aside_precondition_color, 20%);
$aside_remark_color: #aaa;
$aside_remark_border: 5px solid lighten($aside_remark_color, 20%);
$aside_requires_color: #aaa;
$aside_requires_border: 5px solid lighten($aside_requires_color, 20%);
$aside_returns_color: #aaa;
$aside_returns_border: 5px solid lighten($aside_returns_color, 20%);
$aside_see_color: #aaa;
$aside_see_border: 5px solid lighten($aside_see_color, 20%);
$aside_seealso_color: #aaa;
$aside_seealso_border: 5px solid lighten($aside_seealso_color, 20%);
$aside_since_color: #aaa;
$aside_since_border: 5px solid lighten($aside_since_color, 20%);
$aside_todo_color: #aaa;
$aside_todo_border: 5px solid lighten($aside_todo_color, 20%);
$aside_throws_color: #aaa;
$aside_throws_border: 5px solid lighten($aside_throws_color, 20%);
$aside_version_color: #aaa;
$aside_version_border: 5px solid lighten($aside_version_color, 20%);
$aside_warning_color: #ff0000;
$aside_warning_border: 5px solid lighten($aside_warning_color, 20%);

////////////////////////////////
// Reset
////////////////////////////////
Expand Down Expand Up @@ -356,6 +406,8 @@ header {
}
}

// Asides

div.Swift {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
Expand All @@ -367,6 +419,248 @@ div.Swift {
}
}

div.attention {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_attention_border;
overflow-y: hidden;
.aside-title {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is basically the best bit of sass, 👍

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you're using as much as I have done in my years of usage, seems 👍

color: $aside_attention_color;
-webkit-user-select: none;
}
}

div.author {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_author_border;
overflow-y: hidden;
.aside-title {
color: $aside_author_color;
-webkit-user-select: none;
}
}

div.authors {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_authors_border;
overflow-y: hidden;
.aside-title {
color: $aside_authors_color;
-webkit-user-select: none;
}
}

div.bug {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_bug_border;
overflow-y: hidden;
.aside-title {
color: $aside_bug_color;
-webkit-user-select: none;
}
}

div.complexity {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_complexity_border;
overflow-y: hidden;
.aside-title {
color: $aside_complexity_color;
-webkit-user-select: none;
}
}

div.copyright {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_copyright_border;
overflow-y: hidden;
.aside-title {
color: $aside_copyright_color;
-webkit-user-select: none;
}
}

div.date {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_date_border;
overflow-y: hidden;
.aside-title {
color: $aside_date_color;
-webkit-user-select: none;
}
}

div.experiment {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_experiment_border;
overflow-y: hidden;
.aside-title {
color: $aside_experiment_color;
-webkit-user-select: none;
}
}

div.important {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_important_border;
overflow-y: hidden;
.aside-title {
color: $aside_important_color;
-webkit-user-select: none;
}
}

div.invariant {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_invariant_border;
overflow-y: hidden;
.aside-title {
color: $aside_invariant_color;
-webkit-user-select: none;
}
}

div.note {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_note_border;
overflow-y: hidden;
.aside-title {
color: $aside_note_color;
-webkit-user-select: none;
}
}

div.postcondition {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_postcondition_border;
overflow-y: hidden;
.aside-title {
color: $aside_postcondition_color;
-webkit-user-select: none;
}
}

div.precondition {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_precondition_border;
overflow-y: hidden;
.aside-title {
color: $aside_precondition_color;
-webkit-user-select: none;
}
}

div.remark {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_remark_border;
overflow-y: hidden;
.aside-title {
color: $aside_remark_color;
-webkit-user-select: none;
}
}

div.requires {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_requires_border;
overflow-y: hidden;
.aside-title {
color: $aside_requires_color;
-webkit-user-select: none;
}
}

div.see {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_see_border;
overflow-y: hidden;
.aside-title {
color: $aside_see_color;
-webkit-user-select: none;
}
}

div.seealso {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_seealso_border;
overflow-y: hidden;
.aside-title {
color: $aside_seealso_color;
-webkit-user-select: none;
}
}

div.since {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_since_border;
overflow-y: hidden;
.aside-title {
color: $aside_since_color;
-webkit-user-select: none;
}
}

div.todo {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_todo_border;
overflow-y: hidden;
.aside-title {
color: $aside_todo_color;
-webkit-user-select: none;
}
}

div.throws {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_throws_border;
overflow-y: hidden;
.aside-title {
color: $aside_throws_color;
-webkit-user-select: none;
}
}

div.version {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_version_border;
overflow-y: hidden;
.aside-title {
color: $aside_version_color;
-webkit-user-select: none;
}
}

div.warning {
padding: 4px 0 2px 10px;
margin-bottom: 1em;
border-left: $aside_warning_border;
overflow-y: hidden;
.aside-title {
color: $aside_warning_color;
-webkit-user-select: none;
}
}

.graybox {
border-collapse: collapse;
width: 100%;
Expand Down
14 changes: 13 additions & 1 deletion lib/jazzy/jazzy_markdown.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,27 @@ def header(text, header_level)
ELIDED_LI_TOKEN = '7wNVzLB0OYPL2eGlPKu8q4vITltqh0Y6DPZf659TPMAeYh49o'.freeze

def list_item(text, _list_type)
return ELIDED_LI_TOKEN if text =~ SPECIAL_LIST_TYPE_REGEX
if text =~ SPECIAL_LIST_TYPE_REGEX
type = Regexp.last_match(2)
return ELIDED_LI_TOKEN if type =~ /parameter|returns/
return render_aside(type, text.sub(/#{Regexp.escape(type)}:\s+/, ''))
end
str = '<li>'
str << text.strip
str << "</li>\n"
end

def render_aside(type, text)
%(<div class="#{type}">
<p class="aside-title">#{type}</p>
#{text}
</div>)
end

def list(text, list_type)
elided = text.gsub!(ELIDED_LI_TOKEN, '')
return if text =~ /\A\s*\Z/ && elided
return text if text =~ /class="aside-title"/
str = "\n"
str << (list_type == :ordered ? "<ol>\n" : "<ul>\n")
str << text
Expand Down
2 changes: 1 addition & 1 deletion spec/integration_specs
Submodule integration_specs updated 34 files
+12 −0 document_alamofire/after/docs/Classes/MultipartFormData.html
+198 −0 document_alamofire/after/docs/css/jazzy.css
+12 −0 ...t_alamofire/after/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/MultipartFormData.html
+198 −0 document_alamofire/after/docs/docsets/Alamofire.docset/Contents/Resources/Documents/css/jazzy.css
+198 −0 document_alamofire1.2/after/docs/css/jazzy.css
+198 −0 document_alamofire1.2/after/docs/docsets/Alamofire.docset/Contents/Resources/Documents/css/jazzy.css
+198 −0 document_moya_podspec/after/docs/css/jazzy.css
+198 −0 document_moya_podspec/after/docs/docsets/Moya.docset/Contents/Resources/Documents/css/jazzy.css
+10 −0 document_realm_swift/after/docs/Classes.html
+24 −0 document_realm_swift/after/docs/Classes/AnyRealmCollection.html
+114 −0 document_realm_swift/after/docs/Classes/List.html
+6 −0 document_realm_swift/after/docs/Classes/Object.html
+41 −0 document_realm_swift/after/docs/Classes/Realm.html
+30 −0 document_realm_swift/after/docs/Classes/Results.html
+12 −0 document_realm_swift/after/docs/Functions.html
+24 −0 document_realm_swift/after/docs/Protocols/RealmCollectionType.html
+6 −6 document_realm_swift/after/docs/Typealiases.html
+198 −0 document_realm_swift/after/docs/css/jazzy.css
+10 −0 document_realm_swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Classes.html
+24 −0 ...alm_swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Classes/AnyRealmCollection.html
+114 −0 document_realm_swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Classes/List.html
+6 −0 document_realm_swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Classes/Object.html
+41 −0 document_realm_swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Classes/Realm.html
+30 −0 document_realm_swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Classes/Results.html
+12 −0 document_realm_swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Functions.html
+24 −0 ..._swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Protocols/RealmCollectionType.html
+6 −6 document_realm_swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Typealiases.html
+198 −0 document_realm_swift/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/css/jazzy.css
+6 −6 document_realm_swift1.2/after/docs/Typealiases.html
+198 −0 document_realm_swift1.2/after/docs/css/jazzy.css
+6 −6 document_realm_swift1.2/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/Typealiases.html
+198 −0 document_realm_swift1.2/after/docs/docsets/RealmSwift.docset/Contents/Resources/Documents/css/jazzy.css
+198 −0 misc_jazzy_features/after/docs/css/jazzy.css
+198 −0 misc_jazzy_features/after/docs/docsets/MiscJazzyFeatures.docset/Contents/Resources/Documents/css/jazzy.css