Tables

Use tables for data with multiple attributes or comparisons, like feature comparisons. Since tables can be challenging to read and maintain, make sure that the data suits a table format, as tables can be hard to read and maintain. This aligns with GitHub's style guide on table usage.

Usage

Tables simplify comparing differences, such as the distinctions between various subscription plans.

FeatureBasic PlanPremium Plan
Storage10 GB100 GB
SupportEmail only24/7 Support
Monthly Price$5$15

Tables can map relationships, such as Tailwind CSS classes to their corresponding styles.

ClassStyles
text-lefttext-align: left;
text-centertext-align: center;
text-righttext-align: right;
text-justifytext-align: justify;
text-starttext-align: start;
text-endtext-align: end;

Tables are useful for organizing detailed data sets, such as WebSocket connection close codes.

Status CodeMeaningDescription
0999NoneNot used.
1000Normal ClosureThe connection successfully completed the purpose for which it was created.
1001Going AwayThe endpoint is going away, possibly due to a server shutdown or browser navigation.
1002Protocol ErrorThe connection was closed due to a protocol error.
1003Unsupported DataThe endpoint received data it cannot process (e.g., binary data sent to a text-only endpoint).
1004ReservedThis status code is reserved for future use.
1005No Status ReceivedIndicates no status code was provided even though one was expected.
1006Abnormal ClosureIndicates the connection was closed abnormally (without a close frame).