Skip to content

Commit

Permalink
Fix cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiburt committed Aug 4, 2024
1 parent 05b8287 commit 0fd004e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions table_to_html/examples/html.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//! This example demonstrates using [`HtmlTable`] to easily transform a multi-dimensional array
//! into web-friendly [html](https://developer.mozilla.org/en-US/docs/Web/HTML).
//!
//! * Note how [`HtmlTable::set_border()`] is used to customize the output markup.
//! Note how [`HtmlTable::set_border()`] is used to customize the output markup.
//! These changes are implemented through a prepended [style](https://developer.mozilla.org/en-US/docs/Web/css)
//! section above the opening table tag.
//! * Customization options include:
//! * Border
//! * Alignment
//! * Column and Row span
//! * Margin and Padding
//! Customization options include:
//! Border
//! Alignment
//! Column and Row span
//! Margin and Padding

use table_to_html::HtmlTable;

Expand Down

0 comments on commit 0fd004e

Please sign in to comment.