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

Hidden Comments #325

Closed
scotthewitt opened this issue May 1, 2016 · 4 comments
Closed

Hidden Comments #325

scotthewitt opened this issue May 1, 2016 · 4 comments
Labels
doc-wiki Items that might need a documentation/wiki update

Comments

@scotthewitt
Copy link

Hidden Comments

Hi often when i am making a presentation I like to have extra notes for myself which I don't want displayed in the notes at all.

I know that comments in markdown is a problem but perhaps something could be implemented in remark?

Am thinking an extra division within ??? that prevents text being displayed marking a possible slide be;


Slide

???
Note about the slide for people to read

Some extra separator like but not --- or ??? here

Super top secret notes not displayed

@stiemannkj1
Copy link

@scotthewitt, if you are talking about in-slide notes, I have a simple solution: use the content class feature of remark:

<style type="text/css">
.invisible-ink {
    display: none;
}

.remark-container.remark-presenter-mode .invisible-ink {
    display: inline;
    color: red;
}
<style>

<!-- your code here -->

<textarea id="source">

# My Slide

Here's some text. .invisible-ink[Here's some text that only shows up in presenter mode.]

</textarea>

@scotthewitt
Copy link
Author

Obvious idea awesome thanks

@DustinWehr
Copy link

This worked well for me. Maybe it should be in the FAQ?

@peterj peterj added the doc-wiki Items that might need a documentation/wiki update label Dec 17, 2019
@abelards
Copy link
Collaborator

Documented here, thanks!
https://github.com/gnab/remark/wiki/HTML-CSS-JS-samples

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
doc-wiki Items that might need a documentation/wiki update
Projects
None yet
Development

No branches or pull requests

5 participants