mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:42:43 +00:00 
			
		
		
		
	 dee84113ab
			
		
	
	
		dee84113ab
		
	
	
	
	
		
			
			This patch changes the HTML formatting (where to put newlines, etc...) to better match commonmark's test cases. This has minimal effect of the correctness of our markdown implementation, but makes it easier to test. Changes: - Use <em> instead of <i>. - Newline before end of code block. - <hr /> instead of <hr>. - Newline before first list item. - Newline between lines of a paragraph. - Trim whitespace on lines of paragraphs. Tests passed: 33/652 -> 87/652
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <AK/String.h>
 | |
| #include <AK/StringBuilder.h>
 | |
| #include <LibMarkdown/HorizontalRule.h>
 | |
| 
 | |
| namespace Markdown {
 | |
| 
 | |
| String HorizontalRule::render_to_html() const
 | |
| {
 | |
|     return "<hr />\n";
 | |
| }
 | |
| 
 | |
| String HorizontalRule::render_for_terminal(size_t view_width) const
 | |
| {
 | |
|     StringBuilder builder(view_width + 1);
 | |
|     for (size_t i = 0; i < view_width; ++i)
 | |
|         builder.append('-');
 | |
|     builder.append("\n\n");
 | |
|     return builder.to_string();
 | |
| }
 | |
| 
 | |
| OwnPtr<HorizontalRule> HorizontalRule::parse(Vector<StringView>::ConstIterator& lines)
 | |
| {
 | |
|     if (lines.is_end())
 | |
|         return {};
 | |
| 
 | |
|     const StringView& line = *lines;
 | |
| 
 | |
|     if (line.length() < 3)
 | |
|         return {};
 | |
|     if (!line.starts_with('-') && !line.starts_with('_') && !line.starts_with('*'))
 | |
|         return {};
 | |
| 
 | |
|     auto first_character = line.characters_without_null_termination()[0];
 | |
|     for (auto ch : line) {
 | |
|         if (ch != first_character)
 | |
|             return {};
 | |
|     }
 | |
| 
 | |
|     ++lines;
 | |
|     return make<HorizontalRule>();
 | |
| }
 | |
| 
 | |
| }
 |