Skip to content

Commit f0e39cf

Browse files
committed
#157 WIP
1 parent 66facb3 commit f0e39cf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+588
-52
lines changed

api/composer.json

+3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@
1212
"doctrine/doctrine-bundle": "^2.7",
1313
"doctrine/doctrine-migrations-bundle": "^3.2",
1414
"doctrine/orm": "^2.13",
15+
"erusev/parsedown": "^1.7",
1516
"nelmio/cors-bundle": "^2.2",
1617
"phpdocumentor/reflection-docblock": "^5.3",
1718
"phpstan/phpdoc-parser": "^1.8",
1819
"symfony/asset": "6.1.*",
1920
"symfony/console": "6.1.*",
21+
"symfony/css-selector": "6.1.*",
22+
"symfony/dom-crawler": "6.1.*",
2023
"symfony/dotenv": "6.1.*",
2124
"symfony/expression-language": "6.1.*",
2225
"symfony/flex": "^2",

api/composer.lock

+255-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# This is the question
2+
3+
An example
4+
5+
```php
6+
<?php echo "hello world";
7+
// Hello
8+
```
9+
10+
Another example
11+
12+
```php
13+
<?php echo "hello world";
14+
// Hello
15+
```
16+
17+
## Possible answers
18+
19+
- [ ] 3
20+
- [ ] 4
21+
- [ ] 5
22+
23+
<details id="answer">
24+
<summary>
25+
<b>Answer</b>
26+
</summary>
27+
<p>
28+
Answer: <strong>5</strong>
29+
</p>
30+
</details>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
3+
---
4+
5+
In CSS which rule overrides a previous style?
6+
7+
- [ ] important
8+
- [ ] !important
9+
- [ ] important!
10+
11+
<details><summary><b>Answer</b></summary>
12+
<p>
13+
Answer: <strong>!important</strong>
14+
</p>
15+
</details>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
3+
---
4+
5+
In CSS which property controls the text font?
6+
7+
- [ ] font-face
8+
- [ ] font
9+
- [ ] font-family
10+
- [ ] font-style
11+
12+
<details><summary><b>Answer</b></summary>
13+
<p>
14+
Answer: <strong>font-family</strong>
15+
</p>
16+
</details>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
3+
---
4+
5+
What controls a repeating background in CSS?
6+
7+
- [ ] `background: repeat`
8+
- [ ] `image-repeat: repeat`
9+
- [ ] `repeat-background: repeat`
10+
- [ ] `background-repeat: repeat`
11+
12+
<details><summary><b>Answer</b></summary>
13+
<p>
14+
Answer: <code>background-repeat: repeat</code>
15+
</p>
16+
</details>

0 commit comments

Comments
 (0)