Skip to content

Commit 582da6b

Browse files
committed
Recognize MarkDown headings, Lists, Fences & Tables
This commits adds the support to recognize markdown Headings, Lists, Fences & Tables for formatter Fixes : #4337
1 parent 184ea87 commit 582da6b

File tree

7 files changed

+1187
-103
lines changed

7 files changed

+1187
-103
lines changed

org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/RunFormatterTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2005, 2015 IBM Corporation and others.
2+
* Copyright (c) 2005, 2025 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -41,6 +41,7 @@ public class RunFormatterTests extends junit.framework.TestCase {
4141
TEST_SUITES.add(FormatterJavadocDontIndentTagsTests.class);
4242
TEST_SUITES.add(FormatterJavadocDontIndentTagsDescriptionTests.class);
4343
TEST_SUITES.add(FormatterOldBugsGistTests.class);
44+
TEST_SUITES.add(FormatterMarkdownCommentsTests.class);
4445

4546
// should always be the last one, to cleanup environment after messy tests
4647
TEST_SUITES.add(CleanupAfterSuiteTests.class);

0 commit comments

Comments
 (0)