Engrafia
Metadata, SEO, sidebar organization
Organize your content, improve SEO, and search engine results, and organize your content in the sidebarRead more
markdown
---title: 'Quick start'description: 'This section will guide you through principals' ideas and how to start to use them.'position: 0---
Code highlight
Powered by PrismJs, write, and show beautiful code highlight, and organize it easilyRead more
javascript
export const getStaticProps = async () => {return {props: {meta: {title: 'Docs generator',description: 'The easiest way to write docs.',},},};};
python
# Store input numbersnum1 = input('Enter first number: ')num2 = input('Enter second number: ')# Add two numberssum = float(num1) + float(num2)# Display the sumprint('The sum of {0} and {1} is {2}'.format(num1, num2, sum))## Python