Skip to content

Commit

Permalink
comment sections use a smaller header
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed Feb 7, 2019
1 parent 28dc42d commit a16ec02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Content/Library/docsSrc/templates/partMembers.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ let commentBlock (c: Comment) =
match s with
| EmptyDefaultBlock -> []
| NonEmptyDefaultBlock content -> [ div [ Class "comment-block" ] [ RawText content ] ]
| Section(name, content) -> [ h2 [] [ str name ]
| Section(name, content) -> [ h5 [] [ str name ] // h2 is obnoxiously large for this context, go with the smaller h5
RawText content ]

c.Sections
Expand Down
8 changes: 4 additions & 4 deletions Content/Library/src/MyLib.1/Library.fs
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ module Say =
(person.DateOfBirth.ToString("o"))
person.FavoriteNumber

/// ## Description
/// #### Description
/// I do nothing, ever.
///
/// ## Parameters
/// #### Parameters
/// * `name` - parameter of type `'a`
///
/// ## Output Type
/// #### Output Type
/// * `unit`
///
/// ## Exceptions
/// #### Exceptions
/// None
let nothing name =
name |> ignore
Expand Down

0 comments on commit a16ec02

Please sign in to comment.