Preview
Insights
0 words i
0 characters i
0 sentences i
0 paragraphs i
Flesch: β i
FK Grade: β i
DaleβChall: β i
Read: β i
Speak: β i
Keywords
Ad space β 300Γ250
Humanize
Original
Humanized
Plagiarism Check
Checks your text against academic databases (OpenAlex, arXiv, PubMed, Crossref) and web sources to estimate uniqueness.
Ad space β 728Γ90
Markdown syntax guide
Quick reference for common Markdown elements supported by this app:
- Headings:
# H1
β¦###### H6
- Emphasis:
*italic*
,_italic_
,**bold**
,__bold__
,~~strikethrough~~
- Lists: unordered
-
or*
; ordered1.
- Links & images:
[text](https://example.com)
,
- Code: inline
`code`
; fenced blocks with language```js
- Blockquotes:
> quoted text
- Tables:
| col1 | col2 |
with| --- | --- |
- Horizontal rule:
---
or***
- Task list:
- [ ] item
,- [x] done
- Math (TeX): inline
$...$
; block$$...$$
(enable βRender Mathβ)
# Heading 1
> A quote
- Item 1
- Item 2
```js
function hello(){ console.log('world'); }
```
Advanced tips:
- Footnotes:
This needs a note.[^1]
and then[^1]: Footnote text here.
- Table alignment: many flavors support alignment using colons in the header separator.
- Callouts/Admonitions: some renderers support special blockquotes like
> [!NOTE]
and> [!WARNING]
. - Syntax highlighting: use fenced code blocks with language tag, e.g.
```js
,```python
.
Text with a footnote.[^1]
[^1]: Footnote text.
| Left | Center | Right |
|:-----|:------:|------:|
| a | b | c |
> [!NOTE]
> This is a note-style callout.
```python
def fib(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
```
$$
\\begin{align}
a^2 + b^2 &= c^2\\\\
e^{i\\pi} + 1 &= 0
\\end{align}
$$