미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/API
action=flow-parsoid-utils
(main | flow-parsoid-utils)
- 이 모듈은 read 권한을 요구합니다.
- 출처: Flow
- 라이선스: GPL-2.0-or-later
위키텍스트와 HTML 간에 텍스트를 변환합니다.
변수:
- from
Format to convert content from.
- 이 변수는 필수 입력 사항입니다.
- 다음 값 중 하나: html, wikitext 또는 alternative: html, wikitext
- to
Format to convert content to.
- 이 변수는 필수 입력 사항입니다.
- 다음 값 중 하나: html, wikitext 또는 alternative: html, wikitext
- content
Content to be converted.
- 이 변수는 필수 입력 사항입니다.
- title
Title of the page. Cannot be used together with pageid.
- pageid
ID of the page. Cannot be used together with title.
- 유형: 정수
예시:
- Convert wikitext '''lorem''' ''blah'' to HTML
- api.php?action=flow-parsoid-utils&from=wikitext&to=html&content='''lorem'''+''blah''&title=Main_Page [연습장에서 열기]