Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README updated #801

Merged
merged 3 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- Styling for the task section of the instructions (#781)
- Styling for the instructions callouts (#788)
- Output styles for Instructions (#790)

### Changed

Expand All @@ -23,7 +24,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Added

- Output styles for Instructions (#790)
- Javascript support for HTML projects (#748)
- DownloadPanel for sidebar (#744)
- Custom events for Log In and Sign Up from DownloadPanel (#744)
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,15 @@ The red debugging callout is generated as follows:
The blue generic callout is the default if no modifier is specifed:

```html
<div class="c-project-callout">
{callout content here}
</div>
<div class="c-project-callout">{callout content here}</div>
```

##### Output

This class renders a bordered `div` with monospaced text that resembles Python output. Other font styles and images are not yet supported.

```html
<div class="c-project-output">{output content}</div>
```

## Deployment
Expand Down