Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
83c99f3
Installed quizdown and created page
cz-lucas May 6, 2025
4dc688c
First working version of the quiz
cz-lucas May 7, 2025
fbd2814
The questions can now be defined inside the Quiz-tag
cz-lucas May 8, 2025
18cebb2
Updated yarn lockfile
cz-lucas May 12, 2025
d1e0ee5
Made syntaxhighlighting working (not for robotframework)
cz-lucas May 20, 2025
4f66c89
Added syntaxhighlighting for robotframework (requires a modified vers…
cz-lucas May 26, 2025
699b9b2
Using own version of quizdown with support for own hljs parsers
cz-lucas May 27, 2025
7ce8268
Change darkmode colors (#6)
cz-lucas May 28, 2025
477e203
Global import and quiz on all pages (#7)
cz-lucas May 30, 2025
129524a
Result storage (#10)
cz-lucas Jun 24, 2025
cb09bac
Delete node_modules directory
cz-lucas Jun 24, 2025
560f6c0
Update to quizdown extended 1.0.0 (#11)
Snooz82 Nov 1, 2025
98132ba
test page build
Snooz82 Nov 1, 2025
508d4f4
Add GitHub Actions workflow for Docusaurus deployment
Snooz82 Nov 1, 2025
b4d6327
test page build
Snooz82 Nov 1, 2025
cdec31d
example from pieter
Snooz82 Nov 1, 2025
9d4c277
example from pieter
Snooz82 Nov 1, 2025
3bb767e
bumpt to quizdown-extended 1.1.1
Snooz82 Nov 1, 2025
4a53fb7
bumpt to quizdown-extended 1.2.1
Snooz82 Nov 1, 2025
60560b5
slight changes
Snooz82 Nov 1, 2025
77d1ad1
just another trigger
Snooz82 Nov 1, 2025
aa356f1
just another trigger
Snooz82 Nov 1, 2025
83a2003
just another trigger
Snooz82 Nov 1, 2025
c232dda
worked in feedback from PR in Chapters 0-3, 4 and 5 missing
Snooz82 Nov 2, 2025
2e4e4dc
updated dependencies
Snooz82 Nov 2, 2025
d4fdf49
fixed #54, User Keywords now can also define argument types.
Snooz82 Nov 2, 2025
1305828
releasable example exam
Snooz82 Nov 22, 2025
8b057f0
added pdf to home page
Snooz82 Nov 22, 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
7 changes: 7 additions & 0 deletions website/docs/example-exam/Example-exam.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import Quiz from '@site/src/components/Quiz/Quiz';

# Example Questions

This example exam should give you the oportunity to check you knowledge and to get an impression what kind of questions may be asked in the real examination for RFCP®.

<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"
}
17 changes: 14 additions & 3 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 All @@ -31,7 +35,7 @@ const config = {
routeBasePath: '/docs',
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl: 'https://github.com/robotframework/robotframework-RFCP-syllabus/edit/docusaurus/website',
// editUrl: 'https://github.com/robotframework/robotframework-RFCP-syllabus/edit/docusaurus/website',
remarkPlugins: [remarkDirective, remarkTermDirective],
},
blog: false,
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