-
-
Notifications
You must be signed in to change notification settings - Fork 99
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
I want to embed a code snippet from another file into a slide. It adds extra ticks `" near dollar signs $.
Samples to Reproduce
Try to embed this code snippet into a slide:
export class CounterService {
count$ = new BehaviorSubject(1000);
double$ = this.count$.pipe(map((count) => count * 2));
triple$ = this.count$.pipe(map((count) => count * 3));
combined$ = combineLatest([this.double$, this.triple$]).pipe(
map(([double, triple]) => double + triple)
);
over9000$ = this.combined$.pipe(map((combined) => combined > 9000));
message$ = this.over9000$.pipe(
map((over9000) => (over9000 ? "It's over 9000!" : "It's under 9000."))
);
}And it shows up exactly like this instead:
export class CounterService {
count$ = new BehaviorSubject(1000);
double`$ = this.count$`.pipe(map((count) => count * 2));
triple`$ = this.count$`.pipe(map((count) => count * 3));
combined`$ = combineLatest([this.double$`, this.triple$]).pipe(
map(([double, triple]) => double + triple)
);
over9000`$ = this.combined$`.pipe(map((combined) => combined > 9000));
message`$ = this.over9000$`.pipe(
map((over9000) => (over9000 ? "It's over 9000!" : "It's under 9000."))
);
}Expected behavior
The embedded code should appear exactly the same in the slide
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working