Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 907 Bytes

File metadata and controls

25 lines (17 loc) · 907 Bytes

Workout progress tracker table generator

This small app is for generating a simple HTML table for an easy printable workout tracking sheet.

Upon running the app, it will create a file named workout_table.html on the desktop. It can then be opened by a browser and printed out.

At the beginning of the source file Program.cs a few parameters can be set to customize the generated table.

int columns = 5;
int cells = 14;
string[] repeatingStrings = { "Upper Body", "Lower Body", "Abs"};
string fileName = "workout_table";
  • columns to set the number of columns of the result table
  • cells to set the number of cells of the result table
  • repeatingStrings to set the repeated workout titles in the table cells
  • fileName to set the name of the result HTML file

The above parameters would generate the following table:

workout_table.html

example table