mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:22:45 +00:00 
			
		
		
		
	 10f6f6a723
			
		
	
	
		10f6f6a723
		
	
	
	
	
		
			
			LineIterator wraps a vector's ConstIterator, to provide an iterator that can work on indented container blocks (like lists and blockquotes).
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
 | |
|  * Copyright (c) 2021, Peter Elliott <pelliott@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <AK/StringBuilder.h>
 | |
| #include <LibMarkdown/Document.h>
 | |
| #include <LibMarkdown/LineIterator.h>
 | |
| 
 | |
| namespace Markdown {
 | |
| 
 | |
| String Document::render_to_html() const
 | |
| {
 | |
|     StringBuilder builder;
 | |
| 
 | |
|     builder.append("<!DOCTYPE html>\n");
 | |
|     builder.append("<html>\n");
 | |
|     builder.append("<head>\n");
 | |
|     builder.append("<style>\n");
 | |
|     builder.append("code { white-space: pre; }\n");
 | |
|     builder.append("</style>\n");
 | |
|     builder.append("</head>\n");
 | |
|     builder.append("<body>\n");
 | |
| 
 | |
|     builder.append(render_to_inline_html());
 | |
| 
 | |
|     builder.append("</body>\n");
 | |
|     builder.append("</html>\n");
 | |
|     return builder.build();
 | |
| }
 | |
| 
 | |
| String Document::render_to_inline_html() const
 | |
| {
 | |
|     return m_container->render_to_html();
 | |
| }
 | |
| 
 | |
| String Document::render_for_terminal(size_t view_width) const
 | |
| {
 | |
|     return m_container->render_for_terminal(view_width);
 | |
| }
 | |
| 
 | |
| OwnPtr<Document> Document::parse(const StringView& str)
 | |
| {
 | |
|     const Vector<StringView> lines_vec = str.lines();
 | |
|     LineIterator lines(lines_vec.begin());
 | |
|     return make<Document>(ContainerBlock::parse(lines));
 | |
| }
 | |
| 
 | |
| }
 |