.

Confluence


Reading time: less than 1 minute

Confluence is an internal wiki / knowledge base system for companies. It is built by Atlassian.

Below is a snippet you can copy-paste into the browser’s developer console to show the HTML of the page in a text box. This is useful to convert to Markdown, edit, convert back to HTML and update the page.

var ta = document.createElement('textarea');ta.style.width='100%';ta.style.height='90%';ta.value=tinyMCE.activeEditor.getContent();document.body.appendChild(ta);var btn = document.createElement('button');btn.innerText='Write';document.body.appendChild(btn);btn.onclick=()=>{tinyMCE.activeEditor.setContent(ta.value); ta.remove(); btn.remove();};

Citation

If you find this work useful, please cite it as:
@article{yaltirakli,
  title   = "Confluence",
  author  = "Yaltirakli, Gokberk",
  journal = "gkbrk.com",
  year    = "2025",
  url     = "https://www.gkbrk.com/confluence"
}
Not using BibTeX? Click here for more citation styles.
IEEE Citation
Gokberk Yaltirakli, "Confluence", October, 2025. [Online]. Available: https://www.gkbrk.com/confluence. [Accessed Oct. 30, 2025].
APA Style
Yaltirakli, G. (2025, October 30). Confluence. https://www.gkbrk.com/confluence
Bluebook Style
Gokberk Yaltirakli, Confluence, GKBRK.COM (Oct. 30, 2025), https://www.gkbrk.com/confluence

Comments

© 2025 Gokberk Yaltirakli