Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
933e130
Installed quizdown and created page
cz-lucas May 6, 2025
8dfa3af
First working version of the quiz
cz-lucas May 7, 2025
302adc1
The questions can now be defined inside the Quiz-tag
cz-lucas May 8, 2025
2cf99d6
Updated yarn lockfile
cz-lucas May 12, 2025
0fce392
Made syntaxhighlighting working (not for robotframework)
cz-lucas May 20, 2025
f0fead4
Added syntaxhighlighting for robotframework (requires a modified vers…
cz-lucas May 26, 2025
847dffc
Using own version of quizdown with support for own hljs parsers
cz-lucas May 27, 2025
6c860e1
Change darkmode colors (#6)
cz-lucas May 28, 2025
3cc994a
Global import and quiz on all pages (#7)
cz-lucas May 30, 2025
acb6886
Result storage (#10)
cz-lucas Jun 24, 2025
2d516d7
Delete node_modules directory
cz-lucas Jun 24, 2025
5bdaf77
Update to quizdown extended 1.0.0 (#11)
Snooz82 Nov 1, 2025
e8f1b9e
test page build
Snooz82 Nov 1, 2025
88c7c53
Add GitHub Actions workflow for Docusaurus deployment
Snooz82 Nov 1, 2025
0f4eec0
test page build
Snooz82 Nov 1, 2025
ab5071f
example from pieter
Snooz82 Nov 1, 2025
27ac757
example from pieter
Snooz82 Nov 1, 2025
603ce6d
bumpt to quizdown-extended 1.1.1
Snooz82 Nov 1, 2025
e0e0a92
bumpt to quizdown-extended 1.2.1
Snooz82 Nov 1, 2025
9466d23
slight changes
Snooz82 Nov 1, 2025
702c75f
just another trigger
Snooz82 Nov 1, 2025
6d90b9d
just another trigger
Snooz82 Nov 1, 2025
ddf5bab
just another trigger
Snooz82 Nov 1, 2025
6acc38a
worked in feedback from PR in Chapters 0-3, 4 and 5 missing
Snooz82 Nov 2, 2025
5a50e7f
updated dependencies
Snooz82 Nov 2, 2025
7edf037
fixed #54, User Keywords now can also define argument types.
Snooz82 Nov 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions .github/.workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Build & Deploy Docusaurus (GitHub Pages)

on:
push:
branches: [ main ]
workflow_dispatch:

permissions:
contents: read
pages: write # required for actions/deploy-pages
id-token: write # required for OIDC auth to Pages

concurrency:
group: "pages"
cancel-in-progress: true

jobs:
build:
name: Build site
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./website
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
cache-dependency-path: website/yarn.lock

- name: Install deps
run: yarn install --frozen-lockfile

- name: Build
run: yarn build

# Package the static output for Pages
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./website/build

deploy:
name: Deploy to GitHub Pages
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4
29 changes: 0 additions & 29 deletions .github/.workflows/test-deploy.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.idea
folder
__pycache__
results
results

.vscode
.devcontainer
5 changes: 0 additions & 5 deletions website/docs/chapter-02/03_executing.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# 2.3 Executing Robot

::::lo[Learning Objectives]
Expand Down Expand Up @@ -200,7 +199,3 @@ There are basically two kinds of logging information in Robot Framework.

Log messages can be written with different levels of severity (i.e. `INFO`, `DEBUG`, `TRACE`, `WARN` or `ERROR`).
Which levels are written to the log can be controlled by the log level of an execution. Further information in later chapters.




2 changes: 1 addition & 1 deletion website/docs/chapter-02/05_keyword_interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ Understand the concept of argument types and automatic type conversion.

::::

Library Keywords may define the expected types of their argument values.
Keywords may define the expected types of their argument values.
The Robot Framework specification is predominantly a string-based language, therefore most statically defined argument values are strings.
However, the actual implementation of the keyword may expect a different type of argument, like an integer.

Expand Down
2 changes: 1 addition & 1 deletion website/docs/chapter-03/03_user_keyword.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ See also Chapter 2 [2.5.2 Keyword Arguments](chapter-02/05_keyword_interface.md#

Arguments are defined by `[Arguments]` followed by the argument names separated by multiple spaces in the syntax of scalar variables.

Unlike Library Keywords, User Keywords cannot define argument types like `string`, `number`, etc., as described in the [2.5.2.8 Argument Types](chapter-02/05_keyword_interface.md#2528-argument-types) section.
Since Robot Framework 7.3 User Keywords can define argument types like `string`, `number`, etc., as described in the [2.5.2.8 Argument Types](chapter-02/05_keyword_interface.md#2528-argument-types) section.


### 3.3.5.1 Defining Mandatory Arguments
Expand Down
10 changes: 10 additions & 0 deletions website/docs/example-exam/Example-exam.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import Quiz from '@site/src/components/Quiz/Quiz';

# Test the features thing

<Quiz name="TestExample" src="test.md"/>


# Example Questions from Pieter

<Quiz name="Example" src="Example.md"/>
3 changes: 3 additions & 0 deletions website/docs/example-exam/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"label": "Example Exam"
}
15 changes: 13 additions & 2 deletions website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ const config = {
url: 'https://robotframework.org',
baseUrl: '/robotframework-RFCP-syllabus/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
markdown: {
hooks: {
onBrokenMarkdownLinks: 'throw',
},
},
favicon: 'img/rf_favicon.png',
organizationName: 'robotframework', // Usually your GitHub org/user name.
projectName: 'robotframework-RFCP-syllabus', // Usually your repo name.
Expand Down Expand Up @@ -87,6 +91,11 @@ const config = {
to: '/docs/chapter-05/overview',
position: 'left',
},
{
label: 'Example Exam',
to: '/docs/example-exam',
position: 'left',
},
{
label: 'LOs',
to: '/docs/learning_objectives',
Expand Down Expand Up @@ -162,7 +171,9 @@ const config = {
additionalLanguages: ['robotframework', 'python'],
},
}),
plugins: [require.resolve('docusaurus-lunr-search')],
plugins: [
require.resolve('docusaurus-lunr-search')
],
};

module.exports = config;
Loading