Skip to content

Instantly share code, notes, and snippets.

@johnbiundo
Last active March 18, 2019 19:53
Show Gist options
  • Save johnbiundo/0638d649b4d6a11492a9e68c3372047c to your computer and use it in GitHub Desktop.
Save johnbiundo/0638d649b4d6a11492a9e68c3372047c to your computer and use it in GitHub Desktop.
Embedding code in a WP blog using Prism.js and some custom CSS for callouts
<pre class="line-numbers"><code class="language-js">import { Module } from '@nestjs/common';
import { AccountsController } from './accounts.controller'; <i class="conum" data-value="1"></i>
import { UsersModule } from '../users/users.module';
import { AccountsService } from './accounts.service';
@Module({
imports: [UsersModule],
providers: [AccountsService],
controllers: [AccountsController],
})
export class AccountsModule {}</code></pre>
<i class="conum" data-value="1"></i> - Some stuff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment