If you have an issue comment / PR description on GitHub, it doesn't automatically get anchors / IDs that you could link to:
What I like to do is to add a visible # character like this:
| <div class="m-10 rounded-lg bg-white px-6 py-8 shadow-xl ring-1 ring-slate-900/5 dark:bg-black"> | |
| <h3 class="text-base font-medium tracking-tight text-slate-900 dark:text-white">Writes Upside-Down</h3> | |
| <p class="mt-2 text-sm text-slate-500 dark:text-blue-100">The Zero Gravity Pen can be used to write in any orientation, including upside-down. It even works in outer space.</p> | |
| <button | |
| id="toggleDark" | |
| class="px-4 py-2 text-sm font-medium mt-8 text-blue-900 bg-blue-100 rounded-md" | |
| onclick="document.body.classList.toggle('dark')" | |
| >Toggle Dark Mode</button> | |
| </div> |
| from setuptools import setup, find_packages | |
| from pathlib import Path | |
| # Read the contents of README.md | |
| this_directory = Path(__file__).parent | |
| long_description = (this_directory / "README.md").read_text() | |
| setup( | |
| name='sparc', | |
| version='0.87.6', | |
| packages=['sparc_cli'] + ['sparc_cli.' + pkg for pkg in find_packages('sparc_cli')], | |
| package_dir={'sparc_cli': 'sparc_cli'}, |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Froala with Webpack</title> | |
| </head> | |
| <body> | |
| <div id="editor"></div> |
Hmm... I don't see any docs for 4.0 on https://webpack.js.org. I guess I'll just wing it.
All I need to do is npm i -D webpack@next, right?
+ webpack@4.0.0-beta.2
| class Frame extends Component { | |
| componentDidMount() { | |
| this.iframeHead = this.node.contentDocument.head | |
| this.iframeRoot = this.node.contentDocument.body | |
| this.forceUpdate() | |
| } | |
| render() { | |
| const { children, head, ...rest } = this.props | |
| return ( |
| //@flow | |
| import React, { Component } from 'react' | |
| import type { ElementRef } from 'react' | |
| type Props = { src: string, alt: string } | |
| type State = { source?: string } | |
| export default class LazyImage extends Component<Props, State> { | |
| state = {} |
Thank you everybody, Your comments makes it better
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"I made a list of 20 things I might want out of a monorepo tool for a Design System to use as a basis for comparing some of the options including Lerna, Northbrook, and Rush.