-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Grid Table Fixes - block name row, alignment info
- Treat block name row like a regular row instead of header - updated all test mds to reflect same. - Extract align and valign info from html and ensure it is present in md. Added tests specific to it. Resolves: #474 and #475
- Loading branch information
bhagwath
committed
May 30, 2024
1 parent
3ded984
commit b5946ea
Showing
17 changed files
with
131 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Blocks with Alignment</title> | ||
</head> | ||
<body> | ||
<main> | ||
<div> | ||
<h2 id="blocks-with-alignment">Blocks with alignment</h2> | ||
<div class="block-with-align-and-valign"> | ||
<div> | ||
<div data-align="center" data-valign="middle"> | ||
<p>Simple Text 1</p> | ||
<p>Simple Text 2</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="block-with-align"> | ||
<div> | ||
<div data-align="left"> | ||
<p>Simple Text 1</p> | ||
<p>Simple Text 2</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="block-with-valign"> | ||
<div> | ||
<div data-valign="bottom"> | ||
<p>Simple Text 1</p> | ||
<p>Simple Text 2</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
<footer></footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## Blocks with alignment | ||
|
||
+-----------------------------+ | ||
| Block With Align And Valign | | ||
+:-------------x-------------:+ | ||
| Simple Text 1 | | ||
| | | ||
| Simple Text 2 | | ||
+-----------------------------+ | ||
|
||
+------------------+ | ||
| Block With Align | | ||
+:-----------------+ | ||
| Simple Text 1 | | ||
| | | ||
| Simple Text 2 | | ||
+------------------+ | ||
|
||
+-------------------+ | ||
| Block With Valign | | ||
+---------v---------+ | ||
| Simple Text 1 | | ||
| | | ||
| Simple Text 2 | | ||
+-------------------+ | ||
|
||
+-------------------------------+ | ||
| Metadata | | ||
+-------+-----------------------+ | ||
| title | Blocks with Alignment | | ||
+-------+-----------------------+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
+------------------+ | ||
| Product Category | | ||
+==================+ | ||
+------------------+ | ||
| | | ||
+------------------+ | ||
|
||
+---------------+ | ||
| Stock Locator | | ||
+===============+ | ||
+---------------+ | ||
| | | ||
+---------------+ | ||
+---------------+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.