Skip to content

Fix README.md formatting: clean up indentation and code structure - #6

Draft
code-chaser with Copilot wants to merge 2 commits into
master-3from
copilot/fix-963116c1-e5e4-450f-9884-cafd8c567a88
Draft

Fix README.md formatting: clean up indentation and code structure#6
code-chaser with Copilot wants to merge 2 commits into
master-3from
copilot/fix-963116c1-e5e4-450f-9884-cafd8c567a88

Conversation

Copilot AI commented Sep 14, 2025

Copy link
Copy Markdown

This PR addresses formatting and indentation issues throughout the README.md file to improve code readability and maintainability.

Issues Fixed

The README.md file had several formatting problems:

  • Inconsistent HTML tag indentation (some tags had no indentation, others were misaligned)
  • Excessive blank lines in the ASCII art section creating unnecessary file bloat
  • Poor structure in badge image sections with mixed indentation styles
  • List items without proper <ul> wrapper tags
  • Inconsistent spacing between sections

Changes Made

HTML Tag Indentation

All HTML elements now follow consistent 4-space indentation:

<!-- Before -->
<div align="center">
<img align="center" src="..." />
<img align="center" src="..." />
</div>

<!-- After -->
<div align="center">
    <img align="center" src="..." />
    <img align="center" src="..." />
</div>

Skills Section Restructuring

Improved the skills section with proper nesting:

<!-- Before -->
<div align="center">
<a href="..."><img align="center" src="..." /></a>
<a href="..."><img align="center" src="..." /></a>
</div>

<!-- After -->
<div align="center">
    <a href="...">
        <img align="center" src="..." />
    </a>
    <a href="...">
        <img align="center" src="..." />
    </a>
</div>

List Structure Fixes

Added proper <ul> wrapper for contact information list items:

<!-- Before -->
<li>Mail ID: ...</li>
<li>LinkedIn: ...</li>

<!-- After -->
<ul>
    <li>Mail ID: ...</li>
    <li>LinkedIn: ...</li>
</ul>

File Size Optimization

  • Reduced excessive blank lines in ASCII art section
  • Consolidated spacing between sections
  • Result: 33 fewer lines while maintaining all content (171 deletions, 138 insertions)

Impact

  • Improved readability: Consistent indentation makes the HTML structure clear
  • Better maintainability: Proper nesting and formatting make future edits easier
  • Cleaner git diffs: Consistent formatting reduces noise in version control
  • Standards compliance: HTML structure now follows proper formatting conventions

All original content and functionality has been preserved while significantly improving the code quality and structure.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

…file

Co-authored-by: code-chaser <63065397+code-chaser@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix the code in the readme.md file. Fix indentation, proper formatting. Fix README.md formatting: clean up indentation and code structure Sep 14, 2025
Copilot AI requested a review from code-chaser September 14, 2025 14:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants