Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions creator-onboarding/artists/2-staging-and-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ The project description is an important opportunity to highlight your intentions
- Be sure to describe any interactivity features, if applicable.
- End by summarizing how the medium, outputs, and algorithm achieve your initial inquiry or concept.

For Markdown formatting tips (bold, italics, headers, line breaks), see the [Artist FAQ](/creator-onboarding/artists/faq/#creator-dashboard).

---

## Step 3: Scripts
Expand Down
13 changes: 13 additions & 0 deletions creator-onboarding/artists/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,19 @@ Please note that scripts containing multiple `Canvas` elements may not render as
**I set up my payment splits wrong. Can I change them?**
You can update payment configuration up until the project is locked. After locking, the royalty splitter is immutable — contact Art Blocks to request a splitter replacement.

**How do I format my project description? My line breaks aren't working.**
The description field renders standard Markdown: `**bold**`, `*italics*`, `#`/`##` headers, and links all work. Markdown collapses whitespace by design, so `<br>` tags and trailing double-spaces don't reliably create paragraph breaks. To force a visible blank line between paragraphs, put `&nbsp;` (a non-breaking space) on its own line:

```
First paragraph.

&nbsp;

Second paragraph.
```

The Creator Dashboard preview can render slightly differently than the live collection page, so check the live page after publishing to confirm formatting looks right.

---

## Staging and Testing
Expand Down
Loading