From 7dc6414dc679d78feec21caf77da9b9568256261 Mon Sep 17 00:00:00 2001 From: Ricardo Signes Date: Mon, 29 Jul 2024 19:42:37 +1000 Subject: [PATCH] contributing guidelines: fix the Markdown There is a list of files, but it is just a line-by-line list. Markdown will collapse this into a paragraph, and it looks awful. Just use a bullet list. --- CONTRIBUTING.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c4abb78..e29c3b6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,15 +23,15 @@ is performed and/or merged into. When we make a release, we tag it. To help you naviage the codebase, below is a rough project outline: -DDP.pm - an alias to Data::Printer; -Data/Printer.pm - initialization, main imported functions and output handling; -Data/Printer/Common.pm - shared code (string processing, try/catch, sorting, etc); -Data/Printer/Config.pm - rc file loading, option merging; -Data/Printer/Object.pm - stores options, dispatches data to active filters; -Data/Printer/Filter.pm - used in filters, exports the 'filter' command; -Data/Printer/Filter/*.pm - filters that print each data type; -Data/Printer/Theme.pm - handles color themes; -Data/Printer/Theme/*.pm - each contain a theme's color settings; +* DDP.pm - an alias to Data::Printer; +* Data/Printer.pm - initialization, main imported functions and output handling; +* Data/Printer/Common.pm - shared code (string processing, try/catch, sorting, etc); +* Data/Printer/Config.pm - rc file loading, option merging; +* Data/Printer/Object.pm - stores options, dispatches data to active filters; +* Data/Printer/Filter.pm - used in filters, exports the 'filter' command; +* Data/Printer/Filter/*.pm - filters that print each data type; +* Data/Printer/Theme.pm - handles color themes; +* Data/Printer/Theme/*.pm - each contain a theme's color settings; #### Submitting your patch / pull request