Adds beginnings of BlogPageBuilder and associated classes
This commit is contained in:
parent
65aefe46ce
commit
1506f661c9
114 changed files with 4740 additions and 518 deletions
0
Resources/Tests/EmptyFile.html
Normal file
0
Resources/Tests/EmptyFile.html
Normal file
1
Resources/Tests/TestArticle.md
Normal file
1
Resources/Tests/TestArticle.md
Normal file
|
@ -0,0 +1 @@
|
|||
# hello world!
|
10
Resources/Tests/TestBlogPageBlankExpectedOutcome.html
Normal file
10
Resources/Tests/TestBlogPageBlankExpectedOutcome.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<article>
|
||||
|
||||
|
||||
</article>
|
||||
</body>
|
||||
</html>
|
11
Resources/Tests/TestBlogPageExpectedOutcome.html
Normal file
11
Resources/Tests/TestBlogPageExpectedOutcome.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<article>
|
||||
|
||||
<h1>hello world!</h1>
|
||||
|
||||
</article>
|
||||
</body>
|
||||
</html>
|
8
Resources/Tests/TestBlogPageTemplate.html
Normal file
8
Resources/Tests/TestBlogPageTemplate.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<article>
|
||||
</article>
|
||||
</body>
|
||||
</html>
|
23
Resources/Tests/TestFullArticle.md
Normal file
23
Resources/Tests/TestFullArticle.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Example Post
|
||||
This is where a basic summary of the post would go if I wanted to add one
|
||||
|
||||
Normal text would then go here wow
|
||||
## A subheader would go here
|
||||
the info under the subheader would go here wow. Oh look! here comes a page break
|
||||
_______
|
||||
omg wow that worked! heres another:
|
||||
_______
|
||||
|
||||
code would go here like this
|
||||
```
|
||||
int main()
|
||||
{
|
||||
std::cout << "hello world!" << std::endl;
|
||||
}
|
||||
```
|
||||
## One last thing
|
||||
...
|
||||
moomin
|
||||
|
||||
|
||||

|
Loading…
Add table
Add a link
Reference in a new issue