O melhor Ipsum para a Glória do Senhor Jesus
<script src="path/to/daciolo.min.js"></script>
const quote = DACIOLO.generate_quote()
console.log(quote)
// Some random quote here
Key | Type | Default | Description |
---|---|---|---|
paragraphs | Number | 1 | Number of paragraphs requested |
quotes_per_paragraph | Number | 1 | Number of quotes per paragraph |
wrap_with_paragraph_tags | Boolean | false | Wrap your ipsum with <p> tags |
The options can be set on an object passed as a parameter, like the example above:
const quote = DACIOLO.generate_quote({
paragraphs: 20,
quotes_per_paragraph: 4,
wrap_with_paragraph_tags: true,
})
console.log(quote)
- Install dependencies
npm install
- Working on site
npm run dev
- Build
npm run build