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

Support task lists #7

Open
devinat1 opened this issue Apr 11, 2024 · 1 comment
Open

Support task lists #7

devinat1 opened this issue Apr 11, 2024 · 1 comment
Labels
enhancement New feature or request info-needed Additional information required

Comments

@devinat1
Copy link

image

@devinat1 devinat1 added the bug Something isn't working label Apr 11, 2024
@ebullient ebullient added enhancement New feature or request and removed bug Something isn't working labels May 4, 2024
@ebullient
Copy link
Owner

So, to translate this into friendly language because you're talking to a person and not a machine: what behavior are you expecting, here?

Not everything you can do with obsidian is available in reveal.js. It uses a different markdown parser/renderer (Obsidian is not involved in content rendering at all).

The elements are there for you to write CSS for your slides so that you can make them appear as you want them to, but the task behavior is not carried over.

For example, a list like this:

- [ ] one
- [x] two
- [/] three

Will be rendered in a slide like this:

<ul>
<li><input disabled="" type="checkbox"> one</li>
<li><input checked="" disabled="" type="checkbox"> two</li>
<li>[/] three</li></ul> 

@ebullient ebullient reopened this May 5, 2024
@ebullient ebullient changed the title 🐛 Todos are off Support task lists May 5, 2024
@ebullient ebullient added the info-needed Additional information required label May 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request info-needed Additional information required
Projects
None yet
Development

No branches or pull requests

2 participants