Skip to content

Commit

Permalink
Remove unused code (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephannv authored Jan 19, 2025
1 parent 39f6d4d commit 75804ef
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/blueprint/html/element_renderer.cr
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,6 @@ module Blueprint::HTML::ElementRenderer
@buffer << ">"
end

private def element(tag_name : String | Symbol, __content__, **attributes) : Nil
@buffer << "<"
@buffer << tag_name
__append_attributes__(attributes)
@buffer << ">"
__append_to_buffer__(__content__)
@buffer << "</"
@buffer << tag_name
@buffer << ">"
end

private def void_element(tag_name : String | Symbol, **attributes) : Nil
@buffer << "<"
@buffer << tag_name
Expand Down

0 comments on commit 75804ef

Please sign in to comment.