Skip to content

docs: add filenames to Marking text examples #409

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

Merged
merged 7 commits into from
Nov 8, 2024
Merged
Changes from 4 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
Original file line number Diff line number Diff line change
Expand Up @@ -211,20 +211,19 @@ const highlighted = 'This line is highlighted';

You can highlight text using strings or regular expressions. For example:

````md
```jsx "hello" /ye[sp]/ add=/add[12]/ del=/remove[12]/
````md title="content.md"
```jsx title="code.js" "hello" /ye[sp]/ add=/add[12]/ del=/remove[12]/
console.log(
'Hello, the words yes and yep will be marked. Also add1, add2, remove1, remove2',
)
```
````

```jsx "hello" /ye[sp]/ add=/add[12]/ del=/remove[12]/
```jsx title="code.js" "hello" /ye[sp]/ add=/add[12]/ del=/remove[12]/
console.log(
'Hello, the words yes and yep will be marked. Also add1, add2, remove1, remove2',
)
```


#### Importing files

In addition to Expressive Code features, you can import files from your code template `_files` and `_solution` folders using the file or solution shortcodes. These shortcodes insert the content of the specified file directly into your lesson content.
Expand Down