facet-html 0.42.0

HTML parsing for facet using the format architecture with html5gum
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
<!DOCTYPE html>
<html class="client-nojs vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available" lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>Markup language - Wikipedia</title>
<script>(function(){var className="client-js vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available";var cookie=document.cookie.match(/(?:^|; )enwikimwclientpreferences=([^;]+)/);if(cookie){cookie[1].split('%2C').forEach(function(pref){className=className.replace(new RegExp('(^| )'+pref.replace(/-clientpref-\w+$|[^\w-]+/g,'')+'-clientpref-\\w+( |$)'),'$1'+pref+'$2');});}document.documentElement.className=className;}());RLCONF={"wgBreakFrames":false,"wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgRequestId":"91638da8-1fe6-4091-9f9f-cdfadd8d0808","wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Markup_language","wgTitle":"Markup language","wgCurRevisionId":1329733839,"wgRevisionId":1329733839,"wgArticleId":18910,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Webarchive template wayback links","All articles with dead external links","Articles with dead external links from January 2018","Articles with permanently dead external links","Articles with short description","Short description is different from Wikidata","All articles with unsourced statements","Articles with unsourced statements from February 2024","All articles with vague or ambiguous time","Vague or ambiguous time from October 2025","Articles with unsourced statements from August 2008","All articles with specifically marked weasel-worded phrases","Articles with specifically marked weasel-worded phrases from July 2022","Articles with hAudio microformats","Spoken articles","Commons category link is on Wikidata","Markup languages","Formal languages","American inventions"],"wgPageViewLanguage":"en","wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgRelevantPageName":"Markup_language","wgRelevantArticleId":18910,"wgTempUserName":null,"wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgNoticeProject":"wikipedia","wgFlaggedRevsParams":{"tags":{"status":{"levels":1}}},"wgConfirmEditCaptchaNeededForGenericEdit":"hcaptcha","wgConfirmEditHCaptchaVisualEditorOnLoadIntegrationEnabled":false,"wgConfirmEditHCaptchaSiteKey":"5d0c670e-a5f4-4258-ad16-1f42792c9c62","wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsFlags":0,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgMFDisplayWikibaseDescriptions":{"search":true,"watchlist":true,"tagline":false,"nearby":true},"wgWMESchemaEditAttemptStepOversample":false,"wgWMEPageLength":30000,"wgWMEPageLengthBucket":3,"wgEditSubmitButtonLabelPublish":true,"wgVisualEditorPageIsDisambiguation":false,"wgULSPosition":"interlanguage","wgULSisCompactLinksEnabled":false,"wgVector2022LanguageInHeader":true,"wgULSisLanguageSelectorEmpty":false,"wgWikibaseItemId":"Q37045","wgCheckUserClientHintsHeadersJsApi":["brands","architecture","bitness","fullVersionList","mobile","model","platform","platformVersion"],"GEHomepageSuggestedEditsEnableTopics":true,"wgGESuggestedEditsTaskTypes":{"taskTypes":["copyedit","link-recommendation"],"unavailableTaskTypes":[]},"wgGETopicsMatchModeEnabled":false,"wgGELevelingUpEnabledForUser":false,"wgGEUseMetricsPlatformExtension":true,"wgMetricsPlatformUserExperiments":{"active_experiments":[],"overrides":[],"enrolled":[],"assigned":[],"subject_ids":[],"sampling_units":[],"coordinator":[]}};
RLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","user":"ready","user.options":"loading","ext.wikimediamessages.styles":"ready","ext.cite.styles":"ready","ext.pygments":"ready","ext.tmh.player.styles":"ready","skins.vector.search.codex.styles":"ready","skins.vector.styles":"ready","skins.vector.icons":"ready","jquery.makeCollapsible.styles":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","wikibase.client.init":"ready"};RLPAGEMODULES=["ext.cite.ux-enhancements","ext.pygments.view","mediawiki.page.media","ext.tmh.player","site","mediawiki.page.ready","jquery.makeCollapsible","mediawiki.toc","skins.vector.js","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.gadget.ReferenceTooltips","ext.gadget.switcher","ext.urlShortener.toolbar","ext.centralauth.centralautologin","mmv.bootstrap","ext.popups","ext.visualEditor.desktopArticleTarget.init","ext.echo.centralauth","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.interface","ext.cx.eventlogging.campaigns","ext.cx.uls.quick.actions","wikibase.client.vector-2022","wikibase.databox.fromWikidata","ext.checkUser.clientHints","ext.growthExperiments.SuggestedEditSession","ext.xLab"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.impl(function(){return["user.options@12s5i",function($,jQuery,require,module){mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
}];});});</script>
<link rel="stylesheet" href="/w/load.php?lang=en&amp;modules=ext.cite.styles%7Cext.pygments%7Cext.tmh.player.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&amp;only=styles&amp;skin=vector-2022">
<script async="" src="/w/load.php?lang=en&amp;modules=startup&amp;only=scripts&amp;raw=1&amp;skin=vector-2022"></script>
<meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" href="/w/load.php?lang=en&amp;modules=site.styles&amp;only=styles&amp;skin=vector-2022">
<meta name="generator" content="MediaWiki 1.46.0-wmf.7">
<meta name="referrer" content="origin">
<meta name="referrer" content="origin-when-cross-origin">
<meta name="robots" content="max-image-preview:standard">
<meta name="format-detection" content="telephone=no">
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/RecipeML_egg_nog.svg/960px-RecipeML_egg_nog.svg.png">
<meta property="og:image:width" content="908">
<meta property="og:image:height" content="1200">
<meta name="viewport" content="width=1120">
<meta property="og:title" content="Markup language - Wikipedia">
<meta property="og:type" content="website">
<link rel="preconnect" href="//upload.wikimedia.org">
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=Markup_language&amp;action=edit">
<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png">
<link rel="icon" href="/static/favicon/wikipedia.ico">
<link rel="search" type="application/opensearchdescription+xml" href="/w/rest.php/v1/search" title="Wikipedia (en)">
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd">
<link rel="canonical" href="https://en.wikipedia.org/wiki/Markup_language">
<link rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom">
<link rel="dns-prefetch" href="//meta.wikimedia.org" />
<link rel="dns-prefetch" href="auth.wikimedia.org">
</head>
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-Markup_language rootpage-Markup_language skin-vector-2022 action-view">
<div id="mw-aria-live-region" class="mw-aria-live-region" aria-live="polite"></div><a class="mw-jump-link" href="#bodyContent">Jump to content</a>
<div class="vector-header-container">
	<header class="vector-header mw-header no-font-mode-scale">
		<div class="vector-header-start">
			<nav class="vector-main-menu-landmark" aria-label="Site">
				
<div id="vector-main-menu-dropdown" class="vector-dropdown vector-main-menu-dropdown vector-button-flush-left vector-button-flush-right"  title="Main menu" >
	<input type="checkbox" id="vector-main-menu-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-main-menu-dropdown" class="vector-dropdown-checkbox "  aria-label="Main menu"  >
	<label id="vector-main-menu-dropdown-label" for="vector-main-menu-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-menu mw-ui-icon-wikimedia-menu"></span>

<span class="vector-dropdown-label-text">Main menu</span>
	</label>
	<div class="vector-dropdown-content">


				<div id="vector-main-menu-unpinned-container" class="vector-unpinned-container">
		
<div id="vector-main-menu" class="vector-main-menu vector-pinnable-element">
	<div
	class="vector-pinnable-header vector-main-menu-pinnable-header vector-pinnable-header-unpinned"
	data-feature-name="main-menu-pinned"
	data-pinnable-element-id="vector-main-menu"
	data-pinned-container-id="vector-main-menu-pinned-container"
	data-unpinned-container-id="vector-main-menu-unpinned-container"
>
	<div class="vector-pinnable-header-label">Main menu</div>
	<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-main-menu.pin">move to sidebar</button>
	<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-main-menu.unpin">hide</button>
</div>

	
<div id="p-navigation" class="vector-menu mw-portlet mw-portlet-navigation"  >
	<div class="vector-menu-heading">
		Navigation
	</div>
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			<li id="n-mainpage-description" class="mw-list-item"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z"><span>Main page</span></a></li><li id="n-contents" class="mw-list-item"><a href="/wiki/Wikipedia:Contents" title="Guides to browsing Wikipedia"><span>Contents</span></a></li><li id="n-currentevents" class="mw-list-item"><a href="/wiki/Portal:Current_events" title="Articles related to current events"><span>Current events</span></a></li><li id="n-randompage" class="mw-list-item"><a href="/wiki/Special:Random" title="Visit a randomly selected article [x]" accesskey="x"><span>Random article</span></a></li><li id="n-aboutsite" class="mw-list-item"><a href="/wiki/Wikipedia:About" title="Learn about Wikipedia and how it works"><span>About Wikipedia</span></a></li><li id="n-contactpage" class="mw-list-item"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia"><span>Contact us</span></a></li>
		</ul>
		
	</div>
</div>

	
<div id="p-interaction" class="vector-menu mw-portlet mw-portlet-interaction"  >
	<div class="vector-menu-heading">
		Contribute
	</div>
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			<li id="n-help" class="mw-list-item"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia"><span>Help</span></a></li><li id="n-introduction" class="mw-list-item"><a href="/wiki/Help:Introduction" title="Learn how to edit Wikipedia"><span>Learn to edit</span></a></li><li id="n-portal" class="mw-list-item"><a href="/wiki/Wikipedia:Community_portal" title="The hub for editors"><span>Community portal</span></a></li><li id="n-recentchanges" class="mw-list-item"><a href="/wiki/Special:RecentChanges" title="A list of recent changes to Wikipedia [r]" accesskey="r"><span>Recent changes</span></a></li><li id="n-upload" class="mw-list-item"><a href="/wiki/Wikipedia:File_upload_wizard" title="Add images or other media for use on Wikipedia"><span>Upload file</span></a></li><li id="n-specialpages" class="mw-list-item"><a href="/wiki/Special:SpecialPages"><span>Special pages</span></a></li>
		</ul>
		
	</div>
</div>

</div>

				</div>

	</div>
</div>

		</nav>
			
<a href="/wiki/Main_Page" class="mw-logo">
	<img class="mw-logo-icon" src="/static/images/icons/wikipedia.png" alt="" aria-hidden="true" height="50" width="50">
	<span class="mw-logo-container skin-invert">
		<img class="mw-logo-wordmark" alt="Wikipedia" src="/static/images/mobile/copyright/wikipedia-wordmark-en.svg" style="width: 7.5em; height: 1.125em;">
		<img class="mw-logo-tagline" alt="The Free Encyclopedia" src="/static/images/mobile/copyright/wikipedia-tagline-en.svg" width="117" height="13" style="width: 7.3125em; height: 0.8125em;">
	</span>
</a>

		</div>
		<div class="vector-header-end">
			
<div id="p-search" role="search" class="vector-search-box-vue  vector-search-box-collapses vector-search-box-show-thumbnail vector-search-box-auto-expand-width vector-search-box">
	<a href="/wiki/Special:Search" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only search-toggle" title="Search Wikipedia [f]" accesskey="f"><span class="vector-icon mw-ui-icon-search mw-ui-icon-wikimedia-search"></span>

<span>Search</span>
	</a>
	<div class="vector-typeahead-search-container">
		<div class="cdx-typeahead-search cdx-typeahead-search--show-thumbnail cdx-typeahead-search--auto-expand-width">
			<form action="/w/index.php" id="searchform" class="cdx-search-input cdx-search-input--has-end-button">
				<div id="simpleSearch" class="cdx-search-input__input-wrapper"  data-search-loc="header-moved">
					<div class="cdx-text-input cdx-text-input--has-start-icon">
						<input
							class="cdx-text-input__input mw-searchInput" autocomplete="off"
							 type="search" name="search" placeholder="Search Wikipedia" aria-label="Search Wikipedia" autocapitalize="sentences" spellcheck="false" title="Search Wikipedia [f]" accesskey="f" id="searchInput"
							>
						<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>
					</div>
					<input type="hidden" name="title" value="Special:Search">
				</div>
				<button class="cdx-button cdx-search-input__end-button">Search</button>
			</form>
		</div>
	</div>
</div>

			<nav class="vector-user-links vector-user-links-wide" aria-label="Personal tools">
	<div class="vector-user-links-main">
	
<div id="p-vector-user-menu-preferences" class="vector-menu mw-portlet emptyPortlet"  >
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			
		</ul>
		
	</div>
</div>

	
<div id="p-vector-user-menu-userpage" class="vector-menu mw-portlet emptyPortlet"  >
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			
		</ul>
		
	</div>
</div>

	<nav class="vector-appearance-landmark" aria-label="Appearance">
		
<div id="vector-appearance-dropdown" class="vector-dropdown "  title="Change the appearance of the page&#039;s font size, width, and color" >
	<input type="checkbox" id="vector-appearance-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-appearance-dropdown" class="vector-dropdown-checkbox "  aria-label="Appearance"  >
	<label id="vector-appearance-dropdown-label" for="vector-appearance-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-appearance mw-ui-icon-wikimedia-appearance"></span>

<span class="vector-dropdown-label-text">Appearance</span>
	</label>
	<div class="vector-dropdown-content">


			<div id="vector-appearance-unpinned-container" class="vector-unpinned-container">
				
			</div>
		
	</div>
</div>

	</nav>
	
<div id="p-vector-user-menu-notifications" class="vector-menu mw-portlet emptyPortlet"  >
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			
		</ul>
		
	</div>
</div>

	
<div id="p-vector-user-menu-overflow" class="vector-menu mw-portlet"  >
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			<li id="pt-sitesupport-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw-interface  href="https://donate.wikimedia.org/?wmf_source=donate&amp;wmf_medium=sidebar&amp;wmf_campaign=en.wikipedia.org&amp;uselang=en" class=""><span>Donate</span></a>
</li>
<li id="pt-createaccount-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw-interface  href="/w/index.php?title=Special:CreateAccount&amp;returnto=Markup+language" title="You are encouraged to create an account and log in; however, it is not mandatory" class=""><span>Create account</span></a>
</li>
<li id="pt-login-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw-interface  href="/w/index.php?title=Special:UserLogin&amp;returnto=Markup+language" title="You&#039;re encouraged to log in; however, it&#039;s not mandatory. [o]" accesskey="o" class=""><span>Log in</span></a>
</li>

			
		</ul>
		
	</div>
</div>

	</div>
	
<div id="vector-user-links-dropdown" class="vector-dropdown vector-user-menu vector-button-flush-right vector-user-menu-logged-out user-links-collapsible-item"  title="Log in and more options" >
	<input type="checkbox" id="vector-user-links-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-user-links-dropdown" class="vector-dropdown-checkbox "  aria-label="Personal tools"  >
	<label id="vector-user-links-dropdown-label" for="vector-user-links-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-ellipsis mw-ui-icon-wikimedia-ellipsis"></span>

<span class="vector-dropdown-label-text">Personal tools</span>
	</label>
	<div class="vector-dropdown-content">


		
<div id="p-personal" class="vector-menu mw-portlet mw-portlet-personal user-links-collapsible-item"  title="User menu" >
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			<li id="pt-sitesupport" class="user-links-collapsible-item mw-list-item"><a href="https://donate.wikimedia.org/?wmf_source=donate&amp;wmf_medium=sidebar&amp;wmf_campaign=en.wikipedia.org&amp;uselang=en"><span>Donate</span></a></li><li id="pt-createaccount" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Special:CreateAccount&amp;returnto=Markup+language" title="You are encouraged to create an account and log in; however, it is not mandatory"><span class="vector-icon mw-ui-icon-userAdd mw-ui-icon-wikimedia-userAdd"></span> <span>Create account</span></a></li><li id="pt-login" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Markup+language" title="You&#039;re encouraged to log in; however, it&#039;s not mandatory. [o]" accesskey="o"><span class="vector-icon mw-ui-icon-logIn mw-ui-icon-wikimedia-logIn"></span> <span>Log in</span></a></li>
		</ul>
		
	</div>
</div>

	
	</div>
</div>

</nav>

		</div>
	</header>
</div>
<div class="mw-page-container">
	<div class="mw-page-container-inner">
		<div class="vector-sitenotice-container">
			<div id="siteNotice"><!-- CentralNotice --></div>
		</div>
		<div class="vector-column-start">
			<div class="vector-main-menu-container">
		<div id="mw-navigation">
			<nav id="mw-panel" class="vector-main-menu-landmark" aria-label="Site">
				<div id="vector-main-menu-pinned-container" class="vector-pinned-container">
				
				</div>
		</nav>
		</div>
	</div>
	<div class="vector-sticky-pinned-container">
				<nav id="mw-panel-toc" aria-label="Contents" data-event-name="ui.sidebar-toc" class="mw-table-of-contents-container vector-toc-landmark">
					<div id="vector-toc-pinned-container" class="vector-pinned-container">
					<div id="vector-toc" class="vector-toc vector-pinnable-element">
	<div
	class="vector-pinnable-header vector-toc-pinnable-header vector-pinnable-header-pinned"
	data-feature-name="toc-pinned"
	data-pinnable-element-id="vector-toc"
	
	
>
	<h2 class="vector-pinnable-header-label">Contents</h2>
	<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-toc.pin">move to sidebar</button>
	<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-toc.unpin">hide</button>
</div>


	<ul class="vector-toc-contents" id="mw-panel-toc-list">
		<li id="toc-mw-content-text"
			class="vector-toc-list-item vector-toc-level-1">
			<a href="#" class="vector-toc-link">
				<div class="vector-toc-text">(Top)</div>
			</a>
		</li>
		<li id="toc-Etymology"
		class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
		<a class="vector-toc-link" href="#Etymology">
			<div class="vector-toc-text">
				<span class="vector-toc-numb">1</span>
				<span>Etymology</span>
			</div>
		</a>
		
		<ul id="toc-Etymology-sublist" class="vector-toc-list">
		</ul>
	</li>
	<li id="toc-Types"
		class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
		<a class="vector-toc-link" href="#Types">
			<div class="vector-toc-text">
				<span class="vector-toc-numb">2</span>
				<span>Types</span>
			</div>
		</a>
		
			<button aria-controls="toc-Types-sublist" class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-toc-toggle">
				<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>
				<span>Toggle Types subsection</span>
			</button>
		
		<ul id="toc-Types-sublist" class="vector-toc-list">
			<li id="toc-Presentational_markup"
			class="vector-toc-list-item vector-toc-level-2">
			<a class="vector-toc-link" href="#Presentational_markup">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">2.1</span>
					<span>Presentational markup</span>
				</div>
			</a>
			
			<ul id="toc-Presentational_markup-sublist" class="vector-toc-list">
			</ul>
		</li>
		<li id="toc-Procedural_markup"
			class="vector-toc-list-item vector-toc-level-2">
			<a class="vector-toc-link" href="#Procedural_markup">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">2.2</span>
					<span>Procedural markup</span>
				</div>
			</a>
			
			<ul id="toc-Procedural_markup-sublist" class="vector-toc-list">
			</ul>
		</li>
		<li id="toc-Descriptive_markup"
			class="vector-toc-list-item vector-toc-level-2">
			<a class="vector-toc-link" href="#Descriptive_markup">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">2.3</span>
					<span>Descriptive markup</span>
				</div>
			</a>
			
			<ul id="toc-Descriptive_markup-sublist" class="vector-toc-list">
			</ul>
		</li>
	</ul>
	</li>
	<li id="toc-History"
		class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
		<a class="vector-toc-link" href="#History">
			<div class="vector-toc-text">
				<span class="vector-toc-numb">3</span>
				<span>History</span>
			</div>
		</a>
		
			<button aria-controls="toc-History-sublist" class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-toc-toggle">
				<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>
				<span>Toggle History subsection</span>
			</button>
		
		<ul id="toc-History-sublist" class="vector-toc-list">
			<li id="toc-GenCode"
			class="vector-toc-list-item vector-toc-level-2">
			<a class="vector-toc-link" href="#GenCode">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">3.1</span>
					<span>GenCode</span>
				</div>
			</a>
			
			<ul id="toc-GenCode-sublist" class="vector-toc-list">
			</ul>
		</li>
		<li id="toc-troff_and_nroff"
			class="vector-toc-list-item vector-toc-level-2">
			<a class="vector-toc-link" href="#troff_and_nroff">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">3.2</span>
					<span>troff and nroff</span>
				</div>
			</a>
			
			<ul id="toc-troff_and_nroff-sublist" class="vector-toc-list">
			</ul>
		</li>
		<li id="toc-TeX"
			class="vector-toc-list-item vector-toc-level-2">
			<a class="vector-toc-link" href="#TeX">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">3.3</span>
					<span>TeX</span>
				</div>
			</a>
			
			<ul id="toc-TeX-sublist" class="vector-toc-list">
			</ul>
		</li>
		<li id="toc-Scribe,_GML,_and_SGML"
			class="vector-toc-list-item vector-toc-level-2">
			<a class="vector-toc-link" href="#Scribe,_GML,_and_SGML">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">3.4</span>
					<span>Scribe, GML, and SGML</span>
				</div>
			</a>
			
			<ul id="toc-Scribe,_GML,_and_SGML-sublist" class="vector-toc-list">
				<li id="toc-HTML"
			class="vector-toc-list-item vector-toc-level-3">
			<a class="vector-toc-link" href="#HTML">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">3.4.1</span>
					<span>HTML</span>
				</div>
			</a>
			
			<ul id="toc-HTML-sublist" class="vector-toc-list">
			</ul>
		</li>
	</ul>
		</li>
		<li id="toc-XML"
			class="vector-toc-list-item vector-toc-level-2">
			<a class="vector-toc-link" href="#XML">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">3.5</span>
					<span>XML</span>
				</div>
			</a>
			
			<ul id="toc-XML-sublist" class="vector-toc-list">
				<li id="toc-XHTML"
			class="vector-toc-list-item vector-toc-level-3">
			<a class="vector-toc-link" href="#XHTML">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">3.5.1</span>
					<span>XHTML</span>
				</div>
			</a>
			
			<ul id="toc-XHTML-sublist" class="vector-toc-list">
			</ul>
		</li>
		<li id="toc-Other_XML-based_applications"
			class="vector-toc-list-item vector-toc-level-3">
			<a class="vector-toc-link" href="#Other_XML-based_applications">
				<div class="vector-toc-text">
					<span class="vector-toc-numb">3.5.2</span>
					<span>Other XML-based applications</span>
				</div>
			</a>
			
			<ul id="toc-Other_XML-based_applications-sublist" class="vector-toc-list">
			</ul>
		</li>
	</ul>
		</li>
	</ul>
	</li>
	<li id="toc-Features"
		class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
		<a class="vector-toc-link" href="#Features">
			<div class="vector-toc-text">
				<span class="vector-toc-numb">4</span>
				<span>Features</span>
			</div>
		</a>
		
		<ul id="toc-Features-sublist" class="vector-toc-list">
		</ul>
	</li>
	<li id="toc-Broader_use"
		class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
		<a class="vector-toc-link" href="#Broader_use">
			<div class="vector-toc-text">
				<span class="vector-toc-numb">5</span>
				<span>Broader use</span>
			</div>
		</a>
		
		<ul id="toc-Broader_use-sublist" class="vector-toc-list">
		</ul>
	</li>
	<li id="toc-See_also"
		class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
		<a class="vector-toc-link" href="#See_also">
			<div class="vector-toc-text">
				<span class="vector-toc-numb">6</span>
				<span>See also</span>
			</div>
		</a>
		
		<ul id="toc-See_also-sublist" class="vector-toc-list">
		</ul>
	</li>
	<li id="toc-Notes"
		class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
		<a class="vector-toc-link" href="#Notes">
			<div class="vector-toc-text">
				<span class="vector-toc-numb">7</span>
				<span>Notes</span>
			</div>
		</a>
		
		<ul id="toc-Notes-sublist" class="vector-toc-list">
		</ul>
	</li>
	<li id="toc-References"
		class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
		<a class="vector-toc-link" href="#References">
			<div class="vector-toc-text">
				<span class="vector-toc-numb">8</span>
				<span>References</span>
			</div>
		</a>
		
		<ul id="toc-References-sublist" class="vector-toc-list">
		</ul>
	</li>
	<li id="toc-External_links"
		class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
		<a class="vector-toc-link" href="#External_links">
			<div class="vector-toc-text">
				<span class="vector-toc-numb">9</span>
				<span>External links</span>
			</div>
		</a>
		
		<ul id="toc-External_links-sublist" class="vector-toc-list">
		</ul>
	</li>
</ul>
</div>

					</div>
		</nav>
			</div>
		</div>
		<div class="mw-content-container">
			<main id="content" class="mw-body">
				<header class="mw-body-header vector-page-titlebar no-font-mode-scale">
					<nav aria-label="Contents" class="vector-toc-landmark">
						
<div id="vector-page-titlebar-toc" class="vector-dropdown vector-page-titlebar-toc vector-button-flush-left"  title="Table of Contents" >
	<input type="checkbox" id="vector-page-titlebar-toc-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-titlebar-toc" class="vector-dropdown-checkbox "  aria-label="Toggle the table of contents"  >
	<label id="vector-page-titlebar-toc-label" for="vector-page-titlebar-toc-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-listBullet mw-ui-icon-wikimedia-listBullet"></span>

<span class="vector-dropdown-label-text">Toggle the table of contents</span>
	</label>
	<div class="vector-dropdown-content">


							<div id="vector-page-titlebar-toc-unpinned-container" class="vector-unpinned-container">
			</div>
		
	</div>
</div>

					</nav>
					<h1 id="firstHeading" class="firstHeading mw-first-heading"><span class="mw-page-title-main">Markup language</span></h1>
							
<div id="p-lang-btn" class="vector-dropdown mw-portlet mw-portlet-lang"  >
	<input type="checkbox" id="p-lang-btn-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-p-lang-btn" class="vector-dropdown-checkbox mw-interlanguage-selector" aria-label="Go to an article in another language. Available in 64 languages"   >
	<label id="p-lang-btn-label" for="p-lang-btn-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--action-progressive mw-portlet-lang-heading-64" aria-hidden="true"  ><span class="vector-icon mw-ui-icon-language-progressive mw-ui-icon-wikimedia-language-progressive"></span>

<span class="vector-dropdown-label-text">64 languages</span>
	</label>
	<div class="vector-dropdown-content">

		<div class="vector-menu-content">
			
			<ul class="vector-menu-content-list">
				
				<li class="interlanguage-link interwiki-ar mw-list-item"><a href="https://ar.wikipedia.org/wiki/%D9%84%D8%BA%D8%A9_%D8%AA%D8%A3%D8%B4%D9%8A%D8%B1%D9%8A%D8%A9" title="لغة تأشيرية – Arabic" lang="ar" hreflang="ar" data-title="لغة تأشيرية" data-language-autonym="العربية" data-language-local-name="Arabic" class="interlanguage-link-target"><span>العربية</span></a></li><li class="interlanguage-link interwiki-az mw-list-item"><a href="https://az.wikipedia.org/wiki/Ni%C5%9Fanlama_dili" title="Nişanlama dili – Azerbaijani" lang="az" hreflang="az" data-title="Nişanlama dili" data-language-autonym="Azərbaycanca" data-language-local-name="Azerbaijani" class="interlanguage-link-target"><span>Azərbaycanca</span></a></li><li class="interlanguage-link interwiki-bn mw-list-item"><a href="https://bn.wikipedia.org/wiki/%E0%A6%AE%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%95%E0%A6%86%E0%A6%AA_%E0%A6%AD%E0%A6%BE%E0%A6%B7%E0%A6%BE" title="মার্কআপ ভাষা – Bangla" lang="bn" hreflang="bn" data-title="মার্কআপ ভাষা" data-language-autonym="বাংলা" data-language-local-name="Bangla" class="interlanguage-link-target"><span>বাংলা</span></a></li><li class="interlanguage-link interwiki-bg mw-list-item"><a href="https://bg.wikipedia.org/wiki/%D0%9C%D0%B0%D1%80%D0%BA%D0%B8%D1%80%D0%B0%D1%89_%D0%B5%D0%B7%D0%B8%D0%BA" title="Маркиращ език – Bulgarian" lang="bg" hreflang="bg" data-title="Маркиращ език" data-language-autonym="Български" data-language-local-name="Bulgarian" class="interlanguage-link-target"><span>Български</span></a></li><li class="interlanguage-link interwiki-br mw-list-item"><a href="https://br.wikipedia.org/wiki/Lavar_merka%C3%B1" title="Lavar merkañ – Breton" lang="br" hreflang="br" data-title="Lavar merkañ" data-language-autonym="Brezhoneg" data-language-local-name="Breton" class="interlanguage-link-target"><span>Brezhoneg</span></a></li><li class="interlanguage-link interwiki-ca mw-list-item"><a href="https://ca.wikipedia.org/wiki/Llenguatge_de_marques" title="Llenguatge de marques – Catalan" lang="ca" hreflang="ca" data-title="Llenguatge de marques" data-language-autonym="Català" data-language-local-name="Catalan" class="interlanguage-link-target"><span>Català</span></a></li><li class="interlanguage-link interwiki-cs mw-list-item"><a href="https://cs.wikipedia.org/wiki/Zna%C4%8Dkovac%C3%AD_jazyk" title="Značkovací jazyk – Czech" lang="cs" hreflang="cs" data-title="Značkovací jazyk" data-language-autonym="Čeština" data-language-local-name="Czech" class="interlanguage-link-target"><span>Čeština</span></a></li><li class="interlanguage-link interwiki-cy mw-list-item"><a href="https://cy.wikipedia.org/wiki/Iaith_tagio" title="Iaith tagio – Welsh" lang="cy" hreflang="cy" data-title="Iaith tagio" data-language-autonym="Cymraeg" data-language-local-name="Welsh" class="interlanguage-link-target"><span>Cymraeg</span></a></li><li class="interlanguage-link interwiki-da mw-list-item"><a href="https://da.wikipedia.org/wiki/Markup_language" title="Markup language – Danish" lang="da" hreflang="da" data-title="Markup language" data-language-autonym="Dansk" data-language-local-name="Danish" class="interlanguage-link-target"><span>Dansk</span></a></li><li class="interlanguage-link interwiki-de mw-list-item"><a href="https://de.wikipedia.org/wiki/Auszeichnungssprache" title="Auszeichnungssprache – German" lang="de" hreflang="de" data-title="Auszeichnungssprache" data-language-autonym="Deutsch" data-language-local-name="German" class="interlanguage-link-target"><span>Deutsch</span></a></li><li class="interlanguage-link interwiki-et mw-list-item"><a href="https://et.wikipedia.org/wiki/M%C3%A4rgistuskeel" title="Märgistuskeel – Estonian" lang="et" hreflang="et" data-title="Märgistuskeel" data-language-autonym="Eesti" data-language-local-name="Estonian" class="interlanguage-link-target"><span>Eesti</span></a></li><li class="interlanguage-link interwiki-el mw-list-item"><a href="https://el.wikipedia.org/wiki/%CE%93%CE%BB%CF%8E%CF%83%CF%83%CE%B1_%CF%83%CE%AE%CE%BC%CE%B1%CE%BD%CF%83%CE%B7%CF%82" title="Γλώσσα σήμανσης – Greek" lang="el" hreflang="el" data-title="Γλώσσα σήμανσης" data-language-autonym="Ελληνικά" data-language-local-name="Greek" class="interlanguage-link-target"><span>Ελληνικά</span></a></li><li class="interlanguage-link interwiki-es mw-list-item"><a href="https://es.wikipedia.org/wiki/Lenguaje_de_marcado" title="Lenguaje de marcado – Spanish" lang="es" hreflang="es" data-title="Lenguaje de marcado" data-language-autonym="Español" data-language-local-name="Spanish" class="interlanguage-link-target"><span>Español</span></a></li><li class="interlanguage-link interwiki-eo mw-list-item"><a href="https://eo.wikipedia.org/wiki/Marklingvo" title="Marklingvo – Esperanto" lang="eo" hreflang="eo" data-title="Marklingvo" data-language-autonym="Esperanto" data-language-local-name="Esperanto" class="interlanguage-link-target"><span>Esperanto</span></a></li><li class="interlanguage-link interwiki-eu mw-list-item"><a href="https://eu.wikipedia.org/wiki/Markaketa-lengoaia" title="Markaketa-lengoaia – Basque" lang="eu" hreflang="eu" data-title="Markaketa-lengoaia" data-language-autonym="Euskara" data-language-local-name="Basque" class="interlanguage-link-target"><span>Euskara</span></a></li><li class="interlanguage-link interwiki-fa mw-list-item"><a href="https://fa.wikipedia.org/wiki/%D8%B2%D8%A8%D8%A7%D9%86_%D9%86%D8%B4%D8%A7%D9%86%D9%87%E2%80%8C%DA%AF%D8%B0%D8%A7%D8%B1%DB%8C" title="زبان نشانه‌گذاری – Persian" lang="fa" hreflang="fa" data-title="زبان نشانه‌گذاری" data-language-autonym="فارسی" data-language-local-name="Persian" class="interlanguage-link-target"><span>فارسی</span></a></li><li class="interlanguage-link interwiki-fr mw-list-item"><a href="https://fr.wikipedia.org/wiki/Langage_de_balisage" title="Langage de balisage – French" lang="fr" hreflang="fr" data-title="Langage de balisage" data-language-autonym="Français" data-language-local-name="French" class="interlanguage-link-target"><span>Français</span></a></li><li class="interlanguage-link interwiki-fy mw-list-item"><a href="https://fy.wikipedia.org/wiki/Markeartaal" title="Markeartaal – Western Frisian" lang="fy" hreflang="fy" data-title="Markeartaal" data-language-autonym="Frysk" data-language-local-name="Western Frisian" class="interlanguage-link-target"><span>Frysk</span></a></li><li class="interlanguage-link interwiki-gl mw-list-item"><a href="https://gl.wikipedia.org/wiki/Linguaxe_de_marcas" title="Linguaxe de marcas – Galician" lang="gl" hreflang="gl" data-title="Linguaxe de marcas" data-language-autonym="Galego" data-language-local-name="Galician" class="interlanguage-link-target"><span>Galego</span></a></li><li class="interlanguage-link interwiki-ki mw-list-item"><a href="https://ki.wikipedia.org/wiki/Markup_languages" title="Markup languages – Kikuyu" lang="ki" hreflang="ki" data-title="Markup languages" data-language-autonym="Gĩkũyũ" data-language-local-name="Kikuyu" class="interlanguage-link-target"><span>Gĩkũyũ</span></a></li><li class="interlanguage-link interwiki-ko mw-list-item"><a href="https://ko.wikipedia.org/wiki/%EB%A7%88%ED%81%AC%EC%97%85_%EC%96%B8%EC%96%B4" title="마크업 언어 – Korean" lang="ko" hreflang="ko" data-title="마크업 언어" data-language-autonym="한국어" data-language-local-name="Korean" class="interlanguage-link-target"><span>한국어</span></a></li><li class="interlanguage-link interwiki-hi mw-list-item"><a href="https://hi.wikipedia.org/wiki/%E0%A4%9F%E0%A4%BF%E0%A4%AA%E0%A5%8D%E0%A4%AA%E0%A4%A3_%E0%A4%AD%E0%A4%BE%E0%A4%B7%E0%A4%BE_(%E0%A4%95%E0%A4%AE%E0%A5%8D%E0%A4%AA%E0%A5%8D%E0%A4%AF%E0%A5%82%E0%A4%9F%E0%A4%B0)" title="टिप्पण भाषा (कम्प्यूटर) – Hindi" lang="hi" hreflang="hi" data-title="टिप्पण भाषा (कम्प्यूटर)" data-language-autonym="हिन्दी" data-language-local-name="Hindi" class="interlanguage-link-target"><span>हिन्दी</span></a></li><li class="interlanguage-link interwiki-hr mw-list-item"><a href="https://hr.wikipedia.org/wiki/Ozna%C4%8Diteljski_jezik" title="Označiteljski jezik – Croatian" lang="hr" hreflang="hr" data-title="Označiteljski jezik" data-language-autonym="Hrvatski" data-language-local-name="Croatian" class="interlanguage-link-target"><span>Hrvatski</span></a></li><li class="interlanguage-link interwiki-io mw-list-item"><a href="https://io.wikipedia.org/wiki/Merkala_linguo" title="Merkala linguo – Ido" lang="io" hreflang="io" data-title="Merkala linguo" data-language-autonym="Ido" data-language-local-name="Ido" class="interlanguage-link-target"><span>Ido</span></a></li><li class="interlanguage-link interwiki-id mw-list-item"><a href="https://id.wikipedia.org/wiki/Bahasa_markah" title="Bahasa markah – Indonesian" lang="id" hreflang="id" data-title="Bahasa markah" data-language-autonym="Bahasa Indonesia" data-language-local-name="Indonesian" class="interlanguage-link-target"><span>Bahasa Indonesia</span></a></li><li class="interlanguage-link interwiki-ia mw-list-item"><a href="https://ia.wikipedia.org/wiki/Linguage_de_marcation" title="Linguage de marcation – Interlingua" lang="ia" hreflang="ia" data-title="Linguage de marcation" data-language-autonym="Interlingua" data-language-local-name="Interlingua" class="interlanguage-link-target"><span>Interlingua</span></a></li><li class="interlanguage-link interwiki-is mw-list-item"><a href="https://is.wikipedia.org/wiki/%C3%8Dvafsm%C3%A1l" title="Ívafsmál – Icelandic" lang="is" hreflang="is" data-title="Ívafsmál" data-language-autonym="Íslenska" data-language-local-name="Icelandic" class="interlanguage-link-target"><span>Íslenska</span></a></li><li class="interlanguage-link interwiki-it mw-list-item"><a href="https://it.wikipedia.org/wiki/Linguaggio_di_markup" title="Linguaggio di markup – Italian" lang="it" hreflang="it" data-title="Linguaggio di markup" data-language-autonym="Italiano" data-language-local-name="Italian" class="interlanguage-link-target"><span>Italiano</span></a></li><li class="interlanguage-link interwiki-he mw-list-item"><a href="https://he.wikipedia.org/wiki/%D7%A9%D7%A4%D7%AA_%D7%A1%D7%99%D7%9E%D7%95%D7%9F" title="שפת סימון – Hebrew" lang="he" hreflang="he" data-title="שפת סימון" data-language-autonym="עברית" data-language-local-name="Hebrew" class="interlanguage-link-target"><span>עברית</span></a></li><li class="interlanguage-link interwiki-kk mw-list-item"><a href="https://kk.wikipedia.org/wiki/%D0%91%D0%B5%D0%BB%D0%B3%D1%96%D0%BB%D0%B5%D1%83_%D1%82%D1%96%D0%BB%D1%96" title="Белгілеу тілі – Kazakh" lang="kk" hreflang="kk" data-title="Белгілеу тілі" data-language-autonym="Қазақша" data-language-local-name="Kazakh" class="interlanguage-link-target"><span>Қазақша</span></a></li><li class="interlanguage-link interwiki-ku mw-list-item"><a href="https://ku.wikipedia.org/wiki/Ziman%C3%AA_n%C3%AE%C5%9Fankirin%C3%AA" title="Zimanê nîşankirinê – Kurdish" lang="ku" hreflang="ku" data-title="Zimanê nîşankirinê" data-language-autonym="Kurdî" data-language-local-name="Kurdish" class="interlanguage-link-target"><span>Kurdî</span></a></li><li class="interlanguage-link interwiki-ky mw-list-item"><a href="https://ky.wikipedia.org/wiki/%D0%91%D0%B5%D0%BB%D0%B3%D0%B8%D0%BB%D3%A9%D3%A9_%D1%82%D0%B8%D0%BB%D0%B8" title="Белгилөө тили – Kyrgyz" lang="ky" hreflang="ky" data-title="Белгилөө тили" data-language-autonym="Кыргызча" data-language-local-name="Kyrgyz" class="interlanguage-link-target"><span>Кыргызча</span></a></li><li class="interlanguage-link interwiki-lv mw-list-item"><a href="https://lv.wikipedia.org/wiki/Iez%C4%ABm%C4%93%C5%A1anas_valoda" title="Iezīmēšanas valoda – Latvian" lang="lv" hreflang="lv" data-title="Iezīmēšanas valoda" data-language-autonym="Latviešu" data-language-local-name="Latvian" class="interlanguage-link-target"><span>Latviešu</span></a></li><li class="interlanguage-link interwiki-lt mw-list-item"><a href="https://lt.wikipedia.org/wiki/%C5%BDenklinimo_kalba" title="Ženklinimo kalba – Lithuanian" lang="lt" hreflang="lt" data-title="Ženklinimo kalba" data-language-autonym="Lietuvių" data-language-local-name="Lithuanian" class="interlanguage-link-target"><span>Lietuvių</span></a></li><li class="interlanguage-link interwiki-lfn mw-list-item"><a href="https://lfn.wikipedia.org/wiki/Lingua_de_marca" title="Lingua de marca – Lingua Franca Nova" lang="lfn" hreflang="lfn" data-title="Lingua de marca" data-language-autonym="Lingua Franca Nova" data-language-local-name="Lingua Franca Nova" class="interlanguage-link-target"><span>Lingua Franca Nova</span></a></li><li class="interlanguage-link interwiki-hu mw-list-item"><a href="https://hu.wikipedia.org/wiki/Jel%C3%B6l%C5%91nyelv" title="Jelölőnyelv – Hungarian" lang="hu" hreflang="hu" data-title="Jelölőnyelv" data-language-autonym="Magyar" data-language-local-name="Hungarian" class="interlanguage-link-target"><span>Magyar</span></a></li><li class="interlanguage-link interwiki-mk mw-list-item"><a href="https://mk.wikipedia.org/wiki/%D0%9E%D0%B7%D0%BD%D0%B0%D1%87%D1%83%D0%B2%D0%B0%D1%87%D0%BA%D0%B8_%D1%98%D0%B0%D0%B7%D0%B8%D0%BA" title="Означувачки јазик – Macedonian" lang="mk" hreflang="mk" data-title="Означувачки јазик" data-language-autonym="Македонски" data-language-local-name="Macedonian" class="interlanguage-link-target"><span>Македонски</span></a></li><li class="interlanguage-link interwiki-ml mw-list-item"><a href="https://ml.wikipedia.org/wiki/%E0%B4%AE%E0%B4%BE%E0%B5%BC%E0%B4%95%E0%B5%8D%E0%B4%95%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%8D_%E0%B4%AD%E0%B4%BE%E0%B4%B7" title="മാർക്കപ്പ് ഭാഷ – Malayalam" lang="ml" hreflang="ml" data-title="മാർക്കപ്പ് ഭാഷ" data-language-autonym="മലയാളം" data-language-local-name="Malayalam" class="interlanguage-link-target"><span>മലയാളം</span></a></li><li class="interlanguage-link interwiki-ms mw-list-item"><a href="https://ms.wikipedia.org/wiki/Bahasa_penanda" title="Bahasa penanda – Malay" lang="ms" hreflang="ms" data-title="Bahasa penanda" data-language-autonym="Bahasa Melayu" data-language-local-name="Malay" class="interlanguage-link-target"><span>Bahasa Melayu</span></a></li><li class="interlanguage-link interwiki-nl mw-list-item"><a href="https://nl.wikipedia.org/wiki/Opmaaktaal" title="Opmaaktaal – Dutch" lang="nl" hreflang="nl" data-title="Opmaaktaal" data-language-autonym="Nederlands" data-language-local-name="Dutch" class="interlanguage-link-target"><span>Nederlands</span></a></li><li class="interlanguage-link interwiki-ja mw-list-item"><a href="https://ja.wikipedia.org/wiki/%E3%83%9E%E3%83%BC%E3%82%AF%E3%82%A2%E3%83%83%E3%83%97%E8%A8%80%E8%AA%9E" title="マークアップ言語 – Japanese" lang="ja" hreflang="ja" data-title="マークアップ言語" data-language-autonym="日本語" data-language-local-name="Japanese" class="interlanguage-link-target"><span>日本語</span></a></li><li class="interlanguage-link interwiki-no mw-list-item"><a href="https://no.wikipedia.org/wiki/Markeringsspr%C3%A5k" title="Markeringsspråk – Norwegian Bokmål" lang="nb" hreflang="nb" data-title="Markeringsspråk" data-language-autonym="Norsk bokmål" data-language-local-name="Norwegian Bokmål" class="interlanguage-link-target"><span>Norsk bokmål</span></a></li><li class="interlanguage-link interwiki-pnb mw-list-item"><a href="https://pnb.wikipedia.org/wiki/%D8%B2%D8%A8%D8%A7%D9%86_%D8%AA%D8%AF%D9%88%DB%8C%D9%86" title="زبان تدوین – Western Punjabi" lang="pnb" hreflang="pnb" data-title="زبان تدوین" data-language-autonym="پنجابی" data-language-local-name="Western Punjabi" class="interlanguage-link-target"><span>پنجابی</span></a></li><li class="interlanguage-link interwiki-pl mw-list-item"><a href="https://pl.wikipedia.org/wiki/J%C4%99zyk_znacznik%C3%B3w" title="Język znaczników – Polish" lang="pl" hreflang="pl" data-title="Język znaczników" data-language-autonym="Polski" data-language-local-name="Polish" class="interlanguage-link-target"><span>Polski</span></a></li><li class="interlanguage-link interwiki-pt mw-list-item"><a href="https://pt.wikipedia.org/wiki/Linguagem_de_marca%C3%A7%C3%A3o" title="Linguagem de marcação – Portuguese" lang="pt" hreflang="pt" data-title="Linguagem de marcação" data-language-autonym="Português" data-language-local-name="Portuguese" class="interlanguage-link-target"><span>Português</span></a></li><li class="interlanguage-link interwiki-ro mw-list-item"><a href="https://ro.wikipedia.org/wiki/Limbaj_de_marcare" title="Limbaj de marcare – Romanian" lang="ro" hreflang="ro" data-title="Limbaj de marcare" data-language-autonym="Română" data-language-local-name="Romanian" class="interlanguage-link-target"><span>Română</span></a></li><li class="interlanguage-link interwiki-ru mw-list-item"><a href="https://ru.wikipedia.org/wiki/%D0%AF%D0%B7%D1%8B%D0%BA_%D1%80%D0%B0%D0%B7%D0%BC%D0%B5%D1%82%D0%BA%D0%B8" title="Язык разметки – Russian" lang="ru" hreflang="ru" data-title="Язык разметки" data-language-autonym="Русский" data-language-local-name="Russian" class="interlanguage-link-target"><span>Русский</span></a></li><li class="interlanguage-link interwiki-sco mw-list-item"><a href="https://sco.wikipedia.org/wiki/Help:Stairtin_a_new_page" title="Help:Stairtin a new page – Scots" lang="sco" hreflang="sco" data-title="Help:Stairtin a new page" data-language-autonym="Scots" data-language-local-name="Scots" class="interlanguage-link-target"><span>Scots</span></a></li><li class="interlanguage-link interwiki-sq mw-list-item"><a href="https://sq.wikipedia.org/wiki/Gjuha_markup" title="Gjuha markup – Albanian" lang="sq" hreflang="sq" data-title="Gjuha markup" data-language-autonym="Shqip" data-language-local-name="Albanian" class="interlanguage-link-target"><span>Shqip</span></a></li><li class="interlanguage-link interwiki-simple mw-list-item"><a href="https://simple.wikipedia.org/wiki/Markup_language" title="Markup language – Simple English" lang="en-simple" hreflang="en-simple" data-title="Markup language" data-language-autonym="Simple English" data-language-local-name="Simple English" class="interlanguage-link-target"><span>Simple English</span></a></li><li class="interlanguage-link interwiki-sk mw-list-item"><a href="https://sk.wikipedia.org/wiki/Zna%C4%8Dkovac%C3%AD_jazyk" title="Značkovací jazyk – Slovak" lang="sk" hreflang="sk" data-title="Značkovací jazyk" data-language-autonym="Slovenčina" data-language-local-name="Slovak" class="interlanguage-link-target"><span>Slovenčina</span></a></li><li class="interlanguage-link interwiki-sl mw-list-item"><a href="https://sl.wikipedia.org/wiki/Opisni_jezik" title="Opisni jezik – Slovenian" lang="sl" hreflang="sl" data-title="Opisni jezik" data-language-autonym="Slovenščina" data-language-local-name="Slovenian" class="interlanguage-link-target"><span>Slovenščina</span></a></li><li class="interlanguage-link interwiki-sr mw-list-item"><a href="https://sr.wikipedia.org/wiki/Jezik_za_ozna%C4%8Davanje" title="Jezik za označavanje – Serbian" lang="sr" hreflang="sr" data-title="Jezik za označavanje" data-language-autonym="Српски / srpski" data-language-local-name="Serbian" class="interlanguage-link-target"><span>Српски / srpski</span></a></li><li class="interlanguage-link interwiki-fi mw-list-item"><a href="https://fi.wikipedia.org/wiki/Merkint%C3%A4kieli" title="Merkintäkieli – Finnish" lang="fi" hreflang="fi" data-title="Merkintäkieli" data-language-autonym="Suomi" data-language-local-name="Finnish" class="interlanguage-link-target"><span>Suomi</span></a></li><li class="interlanguage-link interwiki-sv mw-list-item"><a href="https://sv.wikipedia.org/wiki/M%C3%A4rkspr%C3%A5k" title="Märkspråk – Swedish" lang="sv" hreflang="sv" data-title="Märkspråk" data-language-autonym="Svenska" data-language-local-name="Swedish" class="interlanguage-link-target"><span>Svenska</span></a></li><li class="interlanguage-link interwiki-ta mw-list-item"><a href="https://ta.wikipedia.org/wiki/%E0%AE%95%E0%AF%81%E0%AE%B1%E0%AE%BF%E0%AE%AF%E0%AF%80%E0%AE%9F%E0%AF%8D%E0%AE%9F%E0%AF%81_%E0%AE%AE%E0%AF%8A%E0%AE%B4%E0%AE%BF" title="குறியீட்டு மொழி – Tamil" lang="ta" hreflang="ta" data-title="குறியீட்டு மொழி" data-language-autonym="தமிழ்" data-language-local-name="Tamil" class="interlanguage-link-target"><span>தமிழ்</span></a></li><li class="interlanguage-link interwiki-th mw-list-item"><a href="https://th.wikipedia.org/wiki/%E0%B8%A0%E0%B8%B2%E0%B8%A9%E0%B8%B2%E0%B8%A1%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B8%81%E0%B8%AD%E0%B8%B1%E0%B8%9B" title="ภาษามาร์กอัป – Thai" lang="th" hreflang="th" data-title="ภาษามาร์กอัป" data-language-autonym="ไทย" data-language-local-name="Thai" class="interlanguage-link-target"><span>ไทย</span></a></li><li class="interlanguage-link interwiki-tr mw-list-item"><a href="https://tr.wikipedia.org/wiki/%C4%B0%C5%9Faretleme_dili" title="İşaretleme dili – Turkish" lang="tr" hreflang="tr" data-title="İşaretleme dili" data-language-autonym="Türkçe" data-language-local-name="Turkish" class="interlanguage-link-target"><span>Türkçe</span></a></li><li class="interlanguage-link interwiki-uk mw-list-item"><a href="https://uk.wikipedia.org/wiki/%D0%9C%D0%BE%D0%B2%D0%B0_%D1%80%D0%BE%D0%B7%D0%BC%D1%96%D1%82%D0%BA%D0%B8_%D0%B4%D0%B0%D0%BD%D0%B8%D1%85" title="Мова розмітки даних – Ukrainian" lang="uk" hreflang="uk" data-title="Мова розмітки даних" data-language-autonym="Українська" data-language-local-name="Ukrainian" class="interlanguage-link-target"><span>Українська</span></a></li><li class="interlanguage-link interwiki-ur mw-list-item"><a href="https://ur.wikipedia.org/wiki/%D9%85%D8%A7%D8%B1%DA%A9_%D8%A7%D9%BE_%D8%B2%D8%A8%D8%A7%D9%86" title="مارک اپ زبان – Urdu" lang="ur" hreflang="ur" data-title="مارک اپ زبان" data-language-autonym="اردو" data-language-local-name="Urdu" class="interlanguage-link-target"><span>اردو</span></a></li><li class="interlanguage-link interwiki-vi mw-list-item"><a href="https://vi.wikipedia.org/wiki/Ng%C3%B4n_ng%E1%BB%AF_%C4%91%C3%A1nh_d%E1%BA%A5u" title="Ngôn ngữ đánh dấu – Vietnamese" lang="vi" hreflang="vi" data-title="Ngôn ngữ đánh dấu" data-language-autonym="Tiếng Việt" data-language-local-name="Vietnamese" class="interlanguage-link-target"><span>Tiếng Việt</span></a></li><li class="interlanguage-link interwiki-wuu mw-list-item"><a href="https://wuu.wikipedia.org/wiki/%E6%A0%87%E8%AE%B0%E8%AF%AD%E8%A8%80" title="标记语言 – Wu" lang="wuu" hreflang="wuu" data-title="标记语言" data-language-autonym="吴语" data-language-local-name="Wu" class="interlanguage-link-target"><span>吴语</span></a></li><li class="interlanguage-link interwiki-zh-yue mw-list-item"><a href="https://zh-yue.wikipedia.org/wiki/%E6%A8%99%E8%A8%98%E8%AA%9E%E8%A8%80" title="標記語言 – Cantonese" lang="yue" hreflang="yue" data-title="標記語言" data-language-autonym="粵語" data-language-local-name="Cantonese" class="interlanguage-link-target"><span>粵語</span></a></li><li class="interlanguage-link interwiki-zh mw-list-item"><a href="https://zh.wikipedia.org/wiki/%E7%BD%AE%E6%A0%87%E8%AF%AD%E8%A8%80" title="置标语言 – Chinese" lang="zh" hreflang="zh" data-title="置标语言" data-language-autonym="中文" data-language-local-name="Chinese" class="interlanguage-link-target"><span>中文</span></a></li>
			</ul>
			<div class="after-portlet after-portlet-lang"><span class="wb-langlinks-edit wb-langlinks-link"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q37045#sitelinks-wikipedia" title="Edit interlanguage links" class="wbc-editpage">Edit links</a></span></div>
		</div>

	</div>
</div>
</header>
				<div class="vector-page-toolbar vector-feature-custom-font-size-clientpref--excluded">
					<div class="vector-page-toolbar-container">
						<div id="left-navigation">
							<nav aria-label="Namespaces">
								
<div id="p-associated-pages" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-associated-pages"  >
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			<li id="ca-nstab-main" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/Markup_language" title="View the content page [c]" accesskey="c"><span>Article</span></a></li><li id="ca-talk" class="vector-tab-noicon mw-list-item"><a href="/wiki/Talk:Markup_language" rel="discussion" title="Discuss improvements to the content page [t]" accesskey="t"><span>Talk</span></a></li>
		</ul>
		
	</div>
</div>

								
<div id="vector-variants-dropdown" class="vector-dropdown emptyPortlet"  >
	<input type="checkbox" id="vector-variants-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-variants-dropdown" class="vector-dropdown-checkbox " aria-label="Change language variant"   >
	<label id="vector-variants-dropdown-label" for="vector-variants-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"  ><span class="vector-dropdown-label-text">English</span>
	</label>
	<div class="vector-dropdown-content">


					
<div id="p-variants" class="vector-menu mw-portlet mw-portlet-variants emptyPortlet"  >
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			
		</ul>
		
	</div>
</div>

				
	</div>
</div>

							</nav>
						</div>
						<div id="right-navigation" class="vector-collapsible">
							<nav aria-label="Views">
								
<div id="p-views" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-views"  >
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			<li id="ca-view" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/Markup_language"><span>Read</span></a></li><li id="ca-edit" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=Markup_language&amp;action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li><li id="ca-history" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=Markup_language&amp;action=history" title="Past revisions of this page [h]" accesskey="h"><span>View history</span></a></li>
		</ul>
		
	</div>
</div>

							</nav>
				
							<nav class="vector-page-tools-landmark" aria-label="Page tools">
								
<div id="vector-page-tools-dropdown" class="vector-dropdown vector-page-tools-dropdown"  >
	<input type="checkbox" id="vector-page-tools-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-tools-dropdown" class="vector-dropdown-checkbox "  aria-label="Tools"  >
	<label id="vector-page-tools-dropdown-label" for="vector-page-tools-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"  ><span class="vector-dropdown-label-text">Tools</span>
	</label>
	<div class="vector-dropdown-content">


									<div id="vector-page-tools-unpinned-container" class="vector-unpinned-container">
						
<div id="vector-page-tools" class="vector-page-tools vector-pinnable-element">
	<div
	class="vector-pinnable-header vector-page-tools-pinnable-header vector-pinnable-header-unpinned"
	data-feature-name="page-tools-pinned"
	data-pinnable-element-id="vector-page-tools"
	data-pinned-container-id="vector-page-tools-pinned-container"
	data-unpinned-container-id="vector-page-tools-unpinned-container"
>
	<div class="vector-pinnable-header-label">Tools</div>
	<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-page-tools.pin">move to sidebar</button>
	<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-page-tools.unpin">hide</button>
</div>

	
<div id="p-cactions" class="vector-menu mw-portlet mw-portlet-cactions emptyPortlet vector-has-collapsible-items"  title="More options" >
	<div class="vector-menu-heading">
		Actions
	</div>
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			<li id="ca-more-view" class="selected vector-more-collapsible-item mw-list-item"><a href="/wiki/Markup_language"><span>Read</span></a></li><li id="ca-more-edit" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=Markup_language&amp;action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li><li id="ca-more-history" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=Markup_language&amp;action=history"><span>View history</span></a></li>
		</ul>
		
	</div>
</div>

<div id="p-tb" class="vector-menu mw-portlet mw-portlet-tb"  >
	<div class="vector-menu-heading">
		General
	</div>
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			<li id="t-whatlinkshere" class="mw-list-item"><a href="/wiki/Special:WhatLinksHere/Markup_language" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j"><span>What links here</span></a></li><li id="t-recentchangeslinked" class="mw-list-item"><a href="/wiki/Special:RecentChangesLinked/Markup_language" rel="nofollow" title="Recent changes in pages linked from this page [k]" accesskey="k"><span>Related changes</span></a></li><li id="t-upload" class="mw-list-item"><a href="//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u"><span>Upload file</span></a></li><li id="t-permalink" class="mw-list-item"><a href="/w/index.php?title=Markup_language&amp;oldid=1329733839" title="Permanent link to this revision of this page"><span>Permanent link</span></a></li><li id="t-info" class="mw-list-item"><a href="/w/index.php?title=Markup_language&amp;action=info" title="More information about this page"><span>Page information</span></a></li><li id="t-cite" class="mw-list-item"><a href="/w/index.php?title=Special:CiteThisPage&amp;page=Markup_language&amp;id=1329733839&amp;wpFormIdentifier=titleform" title="Information on how to cite this page"><span>Cite this page</span></a></li><li id="t-urlshortener" class="mw-list-item"><a href="/w/index.php?title=Special:UrlShortener&amp;url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMarkup_language"><span>Get shortened URL</span></a></li><li id="t-urlshortener-qrcode" class="mw-list-item"><a href="/w/index.php?title=Special:QrCode&amp;url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMarkup_language"><span>Download QR code</span></a></li>
		</ul>
		
	</div>
</div>

<div id="p-coll-print_export" class="vector-menu mw-portlet mw-portlet-coll-print_export"  >
	<div class="vector-menu-heading">
		Print/export
	</div>
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			<li id="coll-download-as-rl" class="mw-list-item"><a href="/w/index.php?title=Special:DownloadAsPdf&amp;page=Markup_language&amp;action=show-download-screen" title="Download this page as a PDF file"><span>Download as PDF</span></a></li><li id="t-print" class="mw-list-item"><a href="/w/index.php?title=Markup_language&amp;printable=yes" title="Printable version of this page [p]" accesskey="p"><span>Printable version</span></a></li>
		</ul>
		
	</div>
</div>

<div id="p-wikibase-otherprojects" class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects"  >
	<div class="vector-menu-heading">
		In other projects
	</div>
	<div class="vector-menu-content">
		
		<ul class="vector-menu-content-list">
			
			<li class="wb-otherproject-link wb-otherproject-commons mw-list-item"><a href="https://commons.wikimedia.org/wiki/Category:Markup_languages" hreflang="en"><span>Wikimedia Commons</span></a></li><li id="t-wikibase" class="wb-otherproject-link wb-otherproject-wikibase-dataitem mw-list-item"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q37045" title="Structured data on this page hosted by Wikidata [g]" accesskey="g"><span>Wikidata item</span></a></li>
		</ul>
		
	</div>
</div>

</div>

									</div>
				
	</div>
</div>

							</nav>
						</div>
					</div>
				</div>
				<div class="vector-column-end no-font-mode-scale">
					<div class="vector-sticky-pinned-container">
						<nav class="vector-page-tools-landmark" aria-label="Page tools">
							<div id="vector-page-tools-pinned-container" class="vector-pinned-container">
				
							</div>
		</nav>
						<nav class="vector-appearance-landmark" aria-label="Appearance">
							<div id="vector-appearance-pinned-container" class="vector-pinned-container">
				<div id="vector-appearance" class="vector-appearance vector-pinnable-element">
	<div
	class="vector-pinnable-header vector-appearance-pinnable-header vector-pinnable-header-pinned"
	data-feature-name="appearance-pinned"
	data-pinnable-element-id="vector-appearance"
	data-pinned-container-id="vector-appearance-pinned-container"
	data-unpinned-container-id="vector-appearance-unpinned-container"
>
	<div class="vector-pinnable-header-label">Appearance</div>
	<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-appearance.pin">move to sidebar</button>
	<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-appearance.unpin">hide</button>
</div>


</div>

							</div>
		</nav>
					</div>
				</div>
				<div id="bodyContent" class="vector-body" aria-labelledby="firstHeading" data-mw-ve-target-container>
					<div class="vector-body-before-content">
							<div class="mw-indicators">
		<div id="mw-indicator-spoken-icon" class="mw-indicator"><div class="mw-parser-output"><span typeof="mw:File"><a href="/wiki/File:Markup_language.ogg" title="Listen to this article"><img alt="Listen to this article" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Gnome-mime-sound-openclipart.svg/20px-Gnome-mime-sound-openclipart.svg.png" decoding="async" width="20" height="20" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Gnome-mime-sound-openclipart.svg/40px-Gnome-mime-sound-openclipart.svg.png 1.5x" data-file-width="160" data-file-height="160" /></a></span></div></div>
		</div>

						<div id="siteSub" class="noprint">From Wikipedia, the free encyclopedia</div>
					</div>
					<div id="contentSub"><div id="mw-content-subtitle"></div></div>
					
					
					<div id="mw-content-text" class="mw-body-content"><div class="mw-subjectpageheader">
</div><div class="mw-content-ltr mw-parser-output" lang="en" dir="ltr"><div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">Modern system for document annotation</div>
<figure class="mw-default-size" typeof="mw:File/Thumb"><a href="/wiki/File:RecipeML_egg_nog.svg" class="mw-file-description"><img alt="A screenshot of an XML file." src="//upload.wikimedia.org/wikipedia/commons/thumb/0/03/RecipeML_egg_nog.svg/250px-RecipeML_egg_nog.svg.png" decoding="async" width="250" height="330" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/03/RecipeML_egg_nog.svg/500px-RecipeML_egg_nog.svg.png 1.5x" data-file-width="479" data-file-height="633" /></a><figcaption>Example of <a href="/wiki/RecipeML" title="RecipeML">RecipeML</a>, a simple markup language based on XML for creating recipes. The markup can be converted programmatically for display into, for example, <a href="/wiki/HTML" title="HTML">HTML</a>, <a href="/wiki/PDF" title="PDF">PDF</a> or <a href="/wiki/Rich_Text_Format" title="Rich Text Format">Rich Text Format</a>.</figcaption></figure>
<p>A <b>markup language</b> is a <a href="/wiki/Encoding" class="mw-redirect" title="Encoding">text-encoding system</a> which specifies the structure and formatting of a document and potentially the relationships among its parts.<sup id="cite&#95;ref-1" class="reference"><a href="#cite_note-1"><span class="cite-bracket">&#91;</span>1<span class="cite-bracket">&#93;</span></a></sup> Markup can control the display of a document or enrich its content to facilitate automated processing.
</p><p>A markup language is a set of rules governing what markup information may be included in a document and how it is combined with the content of the document in a way to facilitate use by humans and computer programs. The idea and <a href="/wiki/Terminology" title="Terminology">terminology</a> evolved from the marking up of paper <a href="/wiki/Manuscript" title="Manuscript">manuscripts</a> (e.g., with revision instructions by editors), traditionally written with a red pen or <a href="/wiki/Blue_pencil_(editing)" title="Blue pencil (editing)">blue pencil</a> on authors' manuscripts.<sup id="cite&#95;ref-2" class="reference"><a href="#cite_note-2"><span class="cite-bracket">&#91;</span>2<span class="cite-bracket">&#93;</span></a></sup>
</p><p>Older markup languages, which typically focus on <a href="/wiki/Typesetting" title="Typesetting">typesetting</a> and presentation, include <a href="/wiki/Troff" title="Troff">troff</a>, <a href="/wiki/TeX" title="TeX">TeX</a>, and <a href="/wiki/LaTeX" title="LaTeX">LaTeX</a>. <a href="/wiki/Scribe_(markup_language)" title="Scribe (markup language)">Scribe</a> and most modern markup languages, such as <a href="/wiki/XML" title="XML">XML</a>, identify document components (for example headings, paragraphs, and tables), with the expectation that technology, such as <a href="/wiki/Style_sheet_(web_development)" title="Style sheet (web development)">stylesheets</a>, will be used to apply formatting or other processing.<sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">&#91;<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (February 2024)">citation needed</span></a></i>&#93;</sup>
</p><p>Some markup languages, such as the widely used <a href="/wiki/HTML" title="HTML">HTML</a>, have pre-defined <a href="/wiki/Presentation_semantics" title="Presentation semantics">presentation semantics</a>, meaning that their <a href="/wiki/Specification_(technical_standard)" title="Specification (technical standard)">specifications</a> prescribe some aspects of how to present the <a href="/wiki/Structured_data" class="mw-redirect" title="Structured data">structured data</a> on particular media. HTML, like <a href="/wiki/DocBook" title="DocBook">DocBook</a>, <a href="/wiki/Open_eBook" title="Open eBook">Open eBook</a>, <a href="/wiki/JATS" class="mw-redirect" title="JATS">JATS</a>, and many others, are based on the markup <a href="/wiki/Metalanguage" title="Metalanguage">metalanguages</a> XML and <a href="/wiki/SGML" class="mw-redirect" title="SGML">SGML</a>. That is, SGML and XML allow designers to specify particular <a href="/wiki/XML_schema" title="XML schema">schemas</a>, which determine which elements, <a href="/wiki/Attribute_(object-oriented_programming)" class="mw-redirect" title="Attribute (object-oriented programming)">attributes</a>, and other features are permitted, and where.<sup id="cite&#95;ref-3" class="reference"><a href="#cite_note-3"><span class="cite-bracket">&#91;</span>3<span class="cite-bracket">&#93;</span></a></sup>
</p><p>A key characteristic of most markup languages is that they allow combining markup with content such as text and pictures. For example, if a few words in a sentence need to be emphasized, or identified as a proper name, defined term, or another special item, the markup may be inserted between the characters of the sentence.
</p>
<meta property="mw:PageProp/toc" />
<div class="mw-heading mw-heading2"><h2 id="Etymology">Etymology<span class="anchor" id="Etymology&#95;and&#95;origin"></span></h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=1" title="Edit section: Etymology"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<p>The word <i>markup</i> is derived from the traditional publishing practice of <i>marking up</i> a <a href="/wiki/Manuscript" title="Manuscript">manuscript</a>, which involves adding handwritten <a href="/wiki/Annotation" title="Annotation">annotations</a> in the form of conventional symbolic <a href="/wiki/Printing" title="Printing">printer</a>'s instructions—in the <a href="/wiki/Margin_(typography)" title="Margin (typography)">margins</a> and text of a paper or printed manuscript.
</p><p>For centuries, this task was done primarily by skilled <a href="/wiki/Typographers" class="mw-redirect" title="Typographers">typographers</a> known as <i>markup men</i><sup id="cite&#95;ref-4" class="reference"><a href="#cite_note-4"><span class="cite-bracket">&#91;</span>4<span class="cite-bracket">&#93;</span></a></sup> or <i>markers</i><sup id="cite&#95;ref-5" class="reference"><a href="#cite_note-5"><span class="cite-bracket">&#91;</span>5<span class="cite-bracket">&#93;</span></a></sup> who marked up text to indicate what <a href="/wiki/Typeface" title="Typeface">typeface</a>, style, and size should be applied to each part, and then passed the manuscript to others for <a href="/wiki/Typesetting" title="Typesetting">typesetting</a> by hand or machine.
</p><p>The markup was also commonly applied by <a href="/wiki/Editor" class="mw-redirect" title="Editor">editors</a>, <a href="/wiki/Proofreader" class="mw-redirect" title="Proofreader">proofreaders</a>, <a href="/wiki/Publisher" class="mw-redirect" title="Publisher">publishers</a>, and <a href="/wiki/Graphic_designer" title="Graphic designer">graphic designers</a>, and by authors themselves, all of whom might also mark things such as corrections and changes.
</p>
<div class="mw-heading mw-heading2"><h2 id="Types">Types</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=2" title="Edit section: Types"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<p>There are three general categories of electronic markup, articulated by James Coombs, Allen Renear, and <a href="/wiki/Steven_DeRose" title="Steven DeRose">Steven DeRose</a> in 1987,<sup id="cite&#95;ref-6" class="reference"><a href="#cite_note-6"><span class="cite-bracket">&#91;</span>6<span class="cite-bracket">&#93;</span></a></sup> and <a href="/wiki/Tim_Bray" title="Tim Bray">Tim Bray</a> in 2003.<sup id="cite&#95;ref-7" class="reference"><a href="#cite_note-7"><span class="cite-bracket">&#91;</span>7<span class="cite-bracket">&#93;</span></a></sup>
</p>
<div class="mw-heading mw-heading3"><h3 id="Presentational_markup">Presentational markup</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=3" title="Edit section: Presentational markup"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<p>Presentational markup is used by traditional <a href="/wiki/Word_processor_(electronic_device)" title="Word processor (electronic device)">word-processing</a> systems. <a href="/wiki/Binary_code" title="Binary code">Binary codes</a> embedded within document text produce the <a href="/wiki/WYSIWYG" title="WYSIWYG">WYSIWYG</a> ('what you see is what you get') effect. Such markup is usually hidden from human users, even authors and editors. Such systems use procedural and descriptive markup internally but convert them to present the user with formatted arrangements of type.<sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">&#91;<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (February 2024)">citation needed</span></a></i>&#93;</sup>
</p>
<div class="mw-heading mw-heading3"><h3 id="Procedural_markup">Procedural markup</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=4" title="Edit section: Procedural markup"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<p>Markup is embedded in text which provides <a href="/wiki/Opcode" title="Opcode">instructions</a> for <a href="/wiki/Computer_program" title="Computer program">programs</a> to process the text. Well-known examples include <a href="/wiki/Troff" title="Troff">troff</a>, <a href="/wiki/TeX" title="TeX">TeX</a>, and <a href="/wiki/Markdown" title="Markdown">Markdown</a>. Generally, software processes the text sequentially from beginning to end, following the instructions as encountered. Such text is often edited with the markup visible and directly manipulated by the author. Popular procedural markup systems usually include <a href="/wiki/Process_(computing)" title="Process (computing)">programming constructs</a>, especially <a href="/wiki/Macro_(computer_science)" title="Macro (computer science)">macros</a>, allowing complex sets of instructions to be invoked by a simple name (and perhaps a few parameters). This is much faster, less error-prone, and more maintenance-friendly than re-stating the same or similar instructions in many places.
</p>
<div class="mw-heading mw-heading3"><h3 id="Descriptive_markup">Descriptive markup</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=5" title="Edit section: Descriptive markup"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<p>Descriptive markup is specifically used to describe parts of the document for what they are, rather than how they should be processed. Well-known systems that provide many such labels include <a href="/wiki/LaTeX" title="LaTeX">LaTeX</a>, <a href="/wiki/HTML" title="HTML">HTML</a>, and <a href="/wiki/XML" title="XML">XML</a>. The objective is to <a href="/wiki/Separation_of_content_and_presentation" title="Separation of content and presentation">decouple the structure</a> of the document from any particular treatment or rendition of it. Such markup is often described as <i><a href="/wiki/Semantic_HTML" title="Semantic HTML">semantic</a></i>. An example of a descriptive markup is HTML's <code>&lt;cite&gt;</code> tag, which is used to label a <a href="/wiki/Citation" title="Citation">citation</a>. Descriptive markup—sometimes called <i>logical markup</i> or <i>conceptual markup</i>—encourages authors to write in a way that describes the material conceptually, rather than visually.<sup id="cite&#95;ref-8" class="reference"><a href="#cite_note-8"><span class="cite-bracket">&#91;</span>8<span class="cite-bracket">&#93;</span></a></sup>
</p><p>There is considerable overlap and concurrent use of markup types. In modern word-processing systems, presentational markup is often saved in descriptive-markup-oriented systems such as XML, and then processed procedurally by <a href="/wiki/Implementation" title="Implementation">implementations</a>. The programming in procedural-markup systems, such as TeX, may be used to create higher-level markup systems that are more descriptive in nature, such as LaTeX.
</p><p>In recent years,<sup class="noprint Inline-Template" style="white-space:nowrap;">&#91;<i><a href="/wiki/Wikipedia:Manual_of_Style/Dates_and_numbers#Chronological_items" title="Wikipedia:Manual of Style/Dates and numbers"><span title="The time period mentioned near this tag is ambiguous. (October 2025)">when?</span></a></i>&#93;</sup> several markup languages have been developed with ease of use as a key goal, and without input from standards organizations, aimed at allowing authors to create formatted text via <a href="/wiki/Web_browser" title="Web browser">web browsers</a>, for example in <a href="/wiki/Wiki" title="Wiki">wikis</a> and <a href="/wiki/Web_forum" class="mw-redirect" title="Web forum">web forums</a>. These are sometimes called <a href="/wiki/Lightweight_markup_language" title="Lightweight markup language">lightweight markup languages</a>. Markdown, <a href="/wiki/BBCode" title="BBCode">BBCode</a>, and the <a href="/wiki/Wikitext" class="mw-redirect" title="Wikitext">markup language used by Wikipedia</a> are examples of such languages.
</p>
<div class="mw-heading mw-heading2"><h2 id="History">History<span class="anchor" id="History"></span></h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=6" title="Edit section: History"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<div class="mw-heading mw-heading3"><h3 id="GenCode">GenCode</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=7" title="Edit section: GenCode"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<p>The first well-known public presentation of markup languages in computer text processing was made by <a href="/wiki/William_W._Tunnicliffe" title="William W. Tunnicliffe">William W. Tunnicliffe</a> at a conference in 1967, although he preferred to call it <i>generic coding.</i> It can be seen as a response to the emergence of processing programs such as <a href="/wiki/RUNOFF" class="mw-redirect" title="RUNOFF">RUNOFF</a> that each used their own control notation, often specific to the target typesetting device. In the 1970s, Tunnicliffe led the development of a standard called GenCode for the publishing industry. <a href="/wiki/Book_design" title="Book design">Book designer</a> Stanley Rice published speculation along similar lines in 1970.<sup id="cite&#95;ref-9" class="reference"><a href="#cite_note-9"><span class="cite-bracket">&#91;</span>9<span class="cite-bracket">&#93;</span></a></sup>
</p><p><a href="/wiki/Brian_Reid_(computer_scientist)" title="Brian Reid (computer scientist)">Brian Reid</a>, in his 1980 dissertation at <a href="/wiki/Carnegie_Mellon_University" title="Carnegie Mellon University">Carnegie Mellon University</a>, developed a theory and working implementation of descriptive markup in actual use. However, <a href="/wiki/IBM" title="IBM">IBM</a> researcher <a href="/wiki/Charles_Goldfarb" title="Charles Goldfarb">Charles Goldfarb</a> is more commonly considered the inventor of markup languages. Goldfarb developed the basic idea while working on a primitive <a href="/wiki/Document_management_system" title="Document management system">document management system</a> intended for law firms in 1969, and helped invent IBM's <a href="/wiki/Generalized_Markup_Language" class="mw-redirect" title="Generalized Markup Language">Generalized Markup Language</a> (GML) later that same year. GML was first publicly disclosed in 1973.
</p><p>In 1975, Goldfarb moved from <a href="/wiki/Cambridge,_Massachusetts" title="Cambridge, Massachusetts">Cambridge, Massachusetts</a> to <a href="/wiki/Silicon_Valley" title="Silicon Valley">Silicon Valley</a> and became a product planner at the <a href="/wiki/IBM_Almaden_Research_Center" class="mw-redirect" title="IBM Almaden Research Center">IBM Almaden Research Center</a>. There, he convinced IBM's executives to deploy GML commercially in 1978 as part of IBM's <a href="/wiki/Document_Composition_Facility" class="mw-redirect" title="Document Composition Facility">Document Composition Facility</a> product, and it was widely used in business within a few years.
</p><p><a href="/wiki/Standard_Generalized_Markup_Language" title="Standard Generalized Markup Language">Standard Generalized Markup Language</a> (SGML), the first standard descriptive markup language, was based on both GML and GenCode. It was the result of an <a href="/wiki/International_Organization_for_Standardization" title="International Organization for Standardization">International Organization for Standardization</a> (ISO) committee that was first chaired by Tunnicliffe, and which Goldfarb also worked on beginning in 1974.<sup id="cite&#95;ref-10" class="reference"><a href="#cite_note-10"><span class="cite-bracket">&#91;</span>10<span class="cite-bracket">&#93;</span></a></sup> Goldfarb eventually became chair of the committee. SGML was first released by ISO as the ISO 8879 standard in October 1986.
</p>
<div class="mw-heading mw-heading3"><h3 id="troff_and_nroff">troff and nroff</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=8" title="Edit section: troff and nroff"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<style data-mw-deduplicate="TemplateStyles:r1320445320">.mw-parser-output .hatnote{font-style:italic}.mw-parser-output div.hatnote{padding-left:1.6em;margin-bottom:0.5em}.mw-parser-output .hatnote i{font-style:normal}.mw-parser-output .hatnote+link+.hatnote{margin-top:-0.5em}@media print{body.ns-0 .mw-parser-output .hatnote{display:none!important}}</style><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="/wiki/Troff" title="Troff">troff</a></div>
<p>Some early examples of computer markup languages available outside the publishing industry can be found in typesetting tools on <a href="/wiki/Unix" title="Unix">Unix</a> systems such as troff and <a href="/wiki/Nroff" title="Nroff">nroff</a>. In these systems, formatting commands were inserted into the document text so that typesetting software could format the text according to the editor's specifications. It was a <a href="/wiki/Trial_and_error" title="Trial and error">trial and error</a> iterative process to correctly print a document.<sup id="cite&#95;ref-11" class="reference"><a href="#cite_note-11"><span class="cite-bracket">&#91;</span>11<span class="cite-bracket">&#93;</span></a></sup> The availability of WYSIWYG publishing software supplanted much use of these languages among casual users, though professional publishing work still uses markup to specify the non-visual structure of texts, and WYSIWYG editors now usually save documents in a markup-language-based format.
</p>
<div class="mw-heading mw-heading3"><h3 id="TeX">TeX</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=9" title="Edit section: TeX"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1320445320" /><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="/wiki/TeX" title="TeX">TeX</a></div>
<p>Another major publishing standard is TeX, created and refined by <a href="/wiki/Donald_Knuth" title="Donald Knuth">Donald Knuth</a> in the 1970s and 1980s. TeX concentrated on the detailed layout of text and font descriptions to typeset mathematical books. This required Knuth to spend considerable time investigating the art of typesetting. TeX is mainly used in <a href="/wiki/Academia" class="mw-redirect" title="Academia">academia</a>, where it is a <a href="/wiki/De_facto_standard" title="De facto standard"><i>de facto</i> standard</a> in many scientific disciplines. A TeX macro package known as LaTeX provides a descriptive markup system on top of TeX, and is widely used both among the scientific community and the publishing industry.
</p>
<div class="mw-heading mw-heading3"><h3 id="Scribe,_GML,_and_SGML"><span id="Scribe.2C_GML.2C_and_SGML"></span>Scribe, GML, and SGML</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=10" title="Edit section: Scribe, GML, and SGML"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1320445320" /><div role="note" class="hatnote navigation-not-searchable">Main articles: <a href="/wiki/Scribe_(markup_language)" title="Scribe (markup language)">Scribe (markup language)</a>, <a href="/wiki/IBM_Generalized_Markup_Language" title="IBM Generalized Markup Language">IBM Generalized Markup Language</a>, and <a href="/wiki/Standard_Generalized_Markup_Language" title="Standard Generalized Markup Language">Standard Generalized Markup Language</a></div>
<p>The first language to make a clear distinction between structure and presentation was Scribe, developed by Brian Reid and described in his doctoral thesis in 1980.<sup id="cite&#95;ref-12" class="reference"><a href="#cite_note-12"><span class="cite-bracket">&#91;</span>12<span class="cite-bracket">&#93;</span></a></sup> Scribe was revolutionary in a number of ways, introducing the idea of styles separated from the marked-up document, and a <a href="/wiki/Grammar" title="Grammar">grammar</a> that controlled the usage of descriptive elements. Scribe influenced the development of GML and later SGML,<sup id="cite&#95;ref-13" class="reference"><a href="#cite_note-13"><span class="cite-bracket">&#91;</span>13<span class="cite-bracket">&#93;</span></a></sup> and is a direct ancestor to HTML and LaTeX.<sup id="cite&#95;ref-14" class="reference"><a href="#cite_note-14"><span class="cite-bracket">&#91;</span>a<span class="cite-bracket">&#93;</span></a></sup>
</p><p>In the early 1980s, the idea that markup should focus on the structural aspects of a document and leave the visual presentation of that structure to the interpreter led to the creation of SGML. The language was developed by a committee chaired by Goldfarb. It incorporated ideas from many different sources, including Tunnicliffe's project, GenCode. Sharon Adler, Anders Berglund, and James A. Marke were also key members of the SGML committee.
</p><p>SGML specifies a <a href="/wiki/Syntax_(programming_languages)" title="Syntax (programming languages)">syntax</a> for including the markup in documents, as well as one for separately describing what tags are allowed, and where (the <a href="/wiki/Document_type_definition" title="Document type definition">document type definition</a> (DTD), later known as a <a href="/wiki/XML_schema" title="XML schema">schema</a>). This allows authors to create and use any markup they want, selecting tags that make the most sense to them and are named in their own <a href="/wiki/Natural_language" title="Natural language">natural languages</a>, while also allowing automated verification. Thus, SGML is properly a <a href="/wiki/Metalanguage" title="Metalanguage">metalanguage</a>, and many markup languages are derived from it. From the late 1980s onward, most substantial new markup languages have been based on SGML, including the <a href="/wiki/Text_Encoding_Initiative" title="Text Encoding Initiative">Text Encoding Initiative</a> (TEI) guidelines and <a href="/wiki/DocBook" title="DocBook">DocBook</a>. SGML was promulgated as the ISO 8879 standard in 1986.<sup id="cite&#95;ref-15" class="reference"><a href="#cite_note-15"><span class="cite-bracket">&#91;</span>14<span class="cite-bracket">&#93;</span></a></sup>
</p><p>SGML found wide acceptance and use in fields with very large-scale <a href="/wiki/Documentation" title="Documentation">documentation</a> requirements. However, many found it cumbersome and difficult to learn—a side effect of its design attempting to do too much and being too flexible. For example, SGML made end tags (or start tags, or both) optional in certain contexts, because its developers thought markup would be done manually by overworked support staff who would appreciate saving keystrokes<sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">&#91;<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (August 2008)">citation needed</span></a></i>&#93;</sup>.
</p>
<div class="mw-heading mw-heading4"><h4 id="HTML">HTML</h4><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=11" title="Edit section: HTML"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1320445320" /><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="/wiki/HTML" title="HTML">HTML</a></div>
<p>In 1989, computer scientist <a href="/wiki/Tim_Berners-Lee" title="Tim Berners-Lee">Tim Berners-Lee</a> wrote a memo proposing an <a href="/wiki/Internet" title="Internet">Internet</a>-based <a href="/wiki/Hypertext" title="Hypertext">hypertext</a> system,<sup id="cite&#95;ref-16" class="reference"><a href="#cite_note-16"><span class="cite-bracket">&#91;</span>15<span class="cite-bracket">&#93;</span></a></sup> then specified HTML and wrote the browser and server software in late 1990. The first publicly available description of HTML was a document called "HTML Tags", first mentioned on the Internet by Berners-Lee in late 1991.<sup id="cite&#95;ref-tagshtml&#95;17-0" class="reference"><a href="#cite_note-tagshtml-17"><span class="cite-bracket">&#91;</span>16<span class="cite-bracket">&#93;</span></a></sup><sup id="cite&#95;ref-18" class="reference"><a href="#cite_note-18"><span class="cite-bracket">&#91;</span>17<span class="cite-bracket">&#93;</span></a></sup> It describes 18 elements comprising the initial, relatively simple design of HTML. Except for the <a href="/wiki/Hyperlink" title="Hyperlink">hyperlink</a> tag, these were strongly influenced by <a href="/wiki/SGMLguid" class="mw-redirect" title="SGMLguid">SGMLguid</a>, an in-house SGML-based documentation format at <a href="/wiki/CERN" title="CERN">CERN</a>, and very similar to the sample schema in the SGML standard. Eleven of these elements still exist in HTML 4.<sup id="cite&#95;ref-19" class="reference"><a href="#cite_note-19"><span class="cite-bracket">&#91;</span>18<span class="cite-bracket">&#93;</span></a></sup>
</p><p>Berners-Lee considered HTML an SGML application. The <a href="/wiki/Internet_Engineering_Task_Force" title="Internet Engineering Task Force">Internet Engineering Task Force</a> (IETF) formally defined it as such with the mid-1993 publication of the first proposal for an HTML <a href="/wiki/Specification_(technical_standard)" title="Specification (technical standard)">specification</a>: "Hypertext Markup Language (HTML)" by Berners-Lee and <a href="/wiki/Dan_Connolly_(computer_scientist)" title="Dan Connolly (computer scientist)">Dan Connolly</a>,<sup id="cite&#95;ref-20" class="reference"><a href="#cite_note-20"><span class="cite-bracket">&#91;</span>19<span class="cite-bracket">&#93;</span></a></sup> which included an SGML DTD to define the grammar.<sup id="cite&#95;ref-21" class="reference"><a href="#cite_note-21"><span class="cite-bracket">&#91;</span>20<span class="cite-bracket">&#93;</span></a></sup> Many of the HTML text elements are found in the 1988 ISO technical report <i>TR 9537 Techniques for using SGML</i>, which in turn covers the features of early text formatting languages, such as that used by the <a href="/wiki/TYPSET_and_RUNOFF" title="TYPSET and RUNOFF">RUNOFF command</a> developed in the early 1960s for the <a href="/wiki/Compatible_Time-Sharing_System" title="Compatible Time-Sharing System">Compatible Time-Sharing System</a> operating system. These formatting commands were derived from those used by typesetters to manually format documents. Steven DeRose argues that HTML's use of descriptive markup (and the influence of SGML in particular) was a major factor in the success of the Web, because of the flexibility and <a href="/wiki/Extensibility" title="Extensibility">extensibility</a> that it enabled.<sup id="cite&#95;ref-22" class="reference"><a href="#cite_note-22"><span class="cite-bracket">&#91;</span>21<span class="cite-bracket">&#93;</span></a></sup> HTML became the main markup language for creating web pages and other information that can be displayed in a web browser and is likely the most used markup language in the world in the 21st century.
</p>
<div class="mw-heading mw-heading3"><h3 id="XML">XML</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=12" title="Edit section: XML"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1320445320" /><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="/wiki/XML" title="XML">XML</a></div>
<p>XML (Extensible Markup Language) is a widely used meta markup language. It was developed by the <a href="/wiki/World_Wide_Web_Consortium" title="World Wide Web Consortium">World Wide Web Consortium</a> (W3C) in a committee created and chaired by <a href="/wiki/Jon_Bosak" title="Jon Bosak">Jon Bosak</a>. The main purpose of XML was to simplify SGML by focusing on a particular use case—documents on the Internet.<sup id="cite&#95;ref-23" class="reference"><a href="#cite_note-23"><span class="cite-bracket">&#91;</span>22<span class="cite-bracket">&#93;</span></a></sup> XML remains a metalanguage like SGML, allowing users to create any tags needed (hence <i>extensible</i>) and then describing those tags and their permitted uses.
</p><p>XML adoption was hastened by the fact that every XML document can be written so that it is also an SGML document, allowing existing SGML users and software to switch to XML fairly easily. At the same time, XML eliminates many complex features of SGML to simplify implementation environments such as documents and publications. It appears to balance simplicity and flexibility, as well as support very robust schema definitions and validation tools, and was rapidly adopted for many uses. XML is now widely used for <a href="/wiki/Communication_protocol" title="Communication protocol">communicating data</a> between applications, <a href="/wiki/Serializing" class="mw-redirect" title="Serializing">serializing</a> program data, for hardware communication protocols, <a href="/wiki/Vector_graphics" title="Vector graphics">vector graphics</a>, and other uses besides documents.
</p>
<div class="mw-heading mw-heading4"><h4 id="XHTML">XHTML</h4><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=13" title="Edit section: XHTML"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1320445320" /><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="/wiki/XHTML" title="XHTML">XHTML</a></div>
<p>From January 2000 until <a href="/wiki/HTML_5" class="mw-redirect" title="HTML 5">HTML 5</a> was released, all <a href="/wiki/W3C_recommendation" class="mw-redirect" title="W3C recommendation">W3C recommendations</a> for HTML were based on XML, using <a href="/wiki/XHTML" title="XHTML">XHTML</a> (Extensible HyperText Markup Language). The language specification requires that XHTML documents be <a href="/wiki/Well-formed_document" title="Well-formed document"><i>well-formed</i> XML documents</a>. This allows for more rigorous and robust documents, by avoiding many syntax errors which historically led to unwanted browser behavior, while still using document components familiar to HTML users.
</p><p>One of the most noticeable differences between HTML and XHTML is the latter's rule that <i>all tags must be closed</i>: empty HTML tags such as <code>&lt;br&gt;</code> must either be <i>closed</i> with a regular end-tag, or replaced by a special form: <code>&lt;br&#160;/&gt;</code> (the space before the slash on the end tag is optional but frequently used, because it enables some pre-XML web browsers and SGML parsers to accept the tag). Another difference is that all <a href="/wiki/HTML_attribute" title="HTML attribute">attribute</a> values in tags must be quoted. Both these differences are commonly criticized as verbose but also praised because they make it far easier to detect, localize, and repair errors. Finally, all tag and attribute names within the XHTML namespace must be lowercase to be valid. HTML, on the other hand, was case-insensitive.
</p>
<div class="mw-heading mw-heading4"><h4 id="Other_XML-based_applications">Other XML-based applications</h4><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=14" title="Edit section: Other XML-based applications"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<p>Many XML-based applications exist, including the <a href="/wiki/Resource_Description_Framework" title="Resource Description Framework">Resource Description Framework</a> as <a href="/wiki/RDF/XML" title="RDF/XML">RDF/XML</a>, <a href="/wiki/XForms" title="XForms">XForms</a>, <a href="/wiki/DocBook" title="DocBook">DocBook</a>, <a href="/wiki/SOAP" title="SOAP">SOAP</a>, and the <a href="/wiki/Web_Ontology_Language" title="Web Ontology Language">Web Ontology Language</a> (OWL). For a partial list of these, see <a href="/wiki/List_of_XML_markup_languages" title="List of XML markup languages">list of XML markup languages</a>.
</p>
<div class="mw-heading mw-heading2"><h2 id="Features">Features</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=15" title="Edit section: Features"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<p>A common feature of many markup languages is that they intermix the text of a document with markup instructions in the same data stream or file. This is not necessary; it is possible to isolate markup from text content, using pointers, offsets, IDs, or other methods to coordinate the two. Such <i>standoff</i> markup is typical for the internal representations that programs use to work with marked-up documents. However, <i>embedded</i> or <i>inline</i> markup is much more common elsewhere. For example, the following is a small section of text marked up in HTML:
</p>
<div class="mw-highlight mw-highlight-lang-html mw-content-ltr mw-highlight-lines" dir="ltr"><pre><span></span><span class="linenos" data-line="1"></span><span class="cp">&lt;!DOCTYPE html&gt;</span>
<span class="linenos" data-line="2"></span><span class="p">&lt;</span><span class="nt">html</span><span class="p">&gt;</span>
<span class="linenos" data-line="3"></span>  <span class="p">&lt;</span><span class="nt">head</span><span class="p">&gt;</span>
<span class="linenos" data-line="4"></span>    <span class="p">&lt;</span><span class="nt">meta</span> <span class="na">charset</span><span class="o">=</span><span class="s">&quot;utf-8&quot;</span><span class="p">&gt;</span>
<span class="linenos" data-line="5"></span>    <span class="p">&lt;</span><span class="nt">title</span><span class="p">&gt;</span>My test page<span class="p">&lt;/</span><span class="nt">title</span><span class="p">&gt;</span>
<span class="linenos" data-line="6"></span>  <span class="p">&lt;/</span><span class="nt">head</span><span class="p">&gt;</span>
<span class="linenos" data-line="7"></span>  <span class="p">&lt;</span><span class="nt">body</span><span class="p">&gt;</span>
<span class="linenos" data-line="8"></span>    <span class="p">&lt;</span><span class="nt">h1</span><span class="p">&gt;</span>Mozilla is cool<span class="p">&lt;/</span><span class="nt">h1</span><span class="p">&gt;</span>
<span class="linenos" data-line="9"></span>    <span class="p">&lt;</span><span class="nt">img</span> <span class="na">src</span><span class="o">=</span><span class="s">&quot;images/firefox-icon.png&quot;</span> <span class="na">alt</span><span class="o">=</span><span class="s">&quot;The Firefox logo: a flaming fox surrounding the Earth.&quot;</span><span class="p">&gt;</span>
<span class="linenos" data-line="10"></span>
<span class="linenos" data-line="11"></span>    <span class="p">&lt;</span><span class="nt">p</span><span class="p">&gt;</span>At Mozilla, we’re a global community of<span class="p">&lt;/</span><span class="nt">p</span><span class="p">&gt;</span>
<span class="linenos" data-line="12"></span>
<span class="linenos" data-line="13"></span>    <span class="p">&lt;</span><span class="nt">ul</span><span class="p">&gt;</span> <span class="cm">&lt;!-- changed to list in the tutorial --&gt;</span>
<span class="linenos" data-line="14"></span>      <span class="p">&lt;</span><span class="nt">li</span><span class="p">&gt;</span>technologists<span class="p">&lt;/</span><span class="nt">li</span><span class="p">&gt;</span>
<span class="linenos" data-line="15"></span>      <span class="p">&lt;</span><span class="nt">li</span><span class="p">&gt;</span>thinkers<span class="p">&lt;/</span><span class="nt">li</span><span class="p">&gt;</span>
<span class="linenos" data-line="16"></span>      <span class="p">&lt;</span><span class="nt">li</span><span class="p">&gt;</span>builders<span class="p">&lt;/</span><span class="nt">li</span><span class="p">&gt;</span>
<span class="linenos" data-line="17"></span>    <span class="p">&lt;/</span><span class="nt">ul</span><span class="p">&gt;</span>
<span class="linenos" data-line="18"></span>
<span class="linenos" data-line="19"></span>    <span class="p">&lt;</span><span class="nt">p</span><span class="p">&gt;</span>working together to keep the Internet alive and accessible, so people worldwide can be informed contributors and creators of the Web. We believe this act of human collaboration across an open platform is essential to individual growth and our collective future.<span class="p">&lt;/</span><span class="nt">p</span><span class="p">&gt;</span>
<span class="linenos" data-line="20"></span>
<span class="linenos" data-line="21"></span>    <span class="p">&lt;</span><span class="nt">p</span><span class="p">&gt;</span>Read the <span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&quot;https://www.mozilla.org/en-US/about/manifesto/&quot;</span><span class="p">&gt;</span>Mozilla Manifesto<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span> to learn even more about the values and principles that guide the pursuit of our mission.<span class="p">&lt;/</span><span class="nt">p</span><span class="p">&gt;</span>
<span class="linenos" data-line="22"></span>  <span class="p">&lt;/</span><span class="nt">body</span><span class="p">&gt;</span>
<span class="linenos" data-line="23"></span><span class="p">&lt;/</span><span class="nt">html</span><span class="p">&gt;</span>
</pre></div>
<p>The codes enclosed in angle-brackets <code>&lt;like this&gt;</code> are markup instructions (known as <i>tags</i>), while the text between these instructions is the actual text of the document. The codes <code>h1</code>, <code>p</code>, and <code>em</code> are examples of <i>semantic</i> markup, in that they describe the intended purpose or the meaning of the text they include. Specifically, <code>h1</code> means the enclosed text is a <i>first-level heading</i>, <code>p</code> means a <i>paragraph</i>, and <code>em</code> means an <i>emphasized</i> word or phrase. A program interpreting such structural markup may apply its own rules or styles for presenting the various pieces of text, using different typefaces, boldness, font size, indentation, color, or other styles, as desired. For example, a tag such as <code>h1</code> might be presented in a large bold <a href="/wiki/Sans-serif" title="Sans-serif">sans-serif</a> typeface in an article, or it might be underscored in a <a href="/wiki/Monospaced" class="mw-redirect" title="Monospaced">monospaced</a> (fixed-width font) document, or it might not change the presentation at all.
</p><p>In contrast, the <code>i</code> tag in HTML 4 is an example of <i>presentational</i> markup, which is generally used to specify a characteristic of the text without specifying the reason for that appearance. In this case, the <code>i</code> element dictates the use of an <a href="/wiki/Italic_type" title="Italic type">italic typeface</a>. However, in HTML 5, this element has been repurposed with a more semantic usage: to denote "a span of text in an alternate voice or mood, or otherwise offset from the normal prose in a manner indicating a different quality of text".<sup id="cite&#95;ref-ielement&#95;24-0" class="reference"><a href="#cite_note-ielement-24"><span class="cite-bracket">&#91;</span>23<span class="cite-bracket">&#93;</span></a></sup> For example, it is appropriate to use the <code>i</code> element to indicate a taxonomic designation or a phrase in another language.<sup id="cite&#95;ref-ielement&#95;24-1" class="reference"><a href="#cite_note-ielement-24"><span class="cite-bracket">&#91;</span>23<span class="cite-bracket">&#93;</span></a></sup> The change was made to ease the transition from HTML 4 to 5 as smoothly as possible so that <a href="/wiki/Deprecated" class="mw-redirect" title="Deprecated">deprecated</a> uses of presentational elements would preserve the most likely intended meaning.
</p><p>TEI has published extensive guidelines<sup id="cite&#95;ref-25" class="reference"><a href="#cite_note-25"><span class="cite-bracket">&#91;</span>24<span class="cite-bracket">&#93;</span></a></sup> for how to encode texts of interest in the <a href="/wiki/Humanities" title="Humanities">humanities</a> and <a href="/wiki/Social_science" title="Social science">social sciences</a>, developed through years of international cooperative work. These guidelines are used for encoding historical documents, and the works of particular scholars, periods, and genres.
</p>
<div class="mw-heading mw-heading2"><h2 id="Broader_use">Broader use</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=16" title="Edit section: Broader use"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<p>While the idea of markup language originated with text documents, they are increasingly used in the presentation of other types of information, including <a href="/wiki/Playlist" title="Playlist">playlists</a>, <a href="/wiki/Vector_graphics" title="Vector graphics">vector graphics</a>, <a href="/wiki/Web_service" title="Web service">web services</a>, <a href="/wiki/Content_syndication" class="mw-redirect" title="Content syndication">content syndication</a>, and <a href="/wiki/User_interface" title="User interface">user interfaces</a>. Most of these are XML applications because XML is a well-defined and <a href="/wiki/Extensible_language" class="mw-redirect" title="Extensible language">extensible language</a>.<sup class="noprint Inline-Template" style="margin-left:0.1em; white-space:nowrap;">&#91;<i><a href="/wiki/Wikipedia:Manual_of_Style/Words_to_watch#Unsupported_attributions" title="Wikipedia:Manual of Style/Words to watch"><span title="The material near this tag may use weasel words or too-vague attribution. (July 2022)">according to whom?</span></a></i>&#93;</sup>
</p><p>The use of XML has also led to the possibility of combining multiple markup languages into a single profile, like <a href="/wiki/XHTML%2BSMIL" title="XHTML+SMIL">XHTML+SMIL</a> and <a href="/wiki/XHTML%2BMathML%2BSVG" title="XHTML+MathML+SVG">XHTML+MathML+SVG</a>.<sup id="cite&#95;ref-26" class="reference"><a href="#cite_note-26"><span class="cite-bracket">&#91;</span>25<span class="cite-bracket">&#93;</span></a></sup>
</p>
<div class="mw-heading mw-heading2"><h2 id="See_also">See also</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=17" title="Edit section: See also"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<ul><li><a href="/wiki/ADDML" title="ADDML">ADDML</a></li>
<li><a href="/wiki/Comparison_of_document_markup_languages" title="Comparison of document markup languages">Comparison of document markup languages</a></li>
<li><a href="/wiki/Curl_(programming_language)" title="Curl (programming language)">Curl (programming language)</a></li>
<li><a href="/wiki/List_of_markup_languages" title="List of markup languages">List of markup languages</a></li>
<li><a href="/wiki/Programming_language" title="Programming language">Programming language</a></li>
<li><a href="/wiki/Modeling_language" title="Modeling language">Modeling language</a></li>
<li><a href="/wiki/Plain_text" title="Plain text">Plain text</a></li>
<li><a href="/wiki/Formatted_text" title="Formatted text">Formatted text</a></li>
<li><a href="/wiki/Texy!" title="Texy!">Texy!</a></li>
<li><a href="/wiki/ReStructuredText" title="ReStructuredText">ReStructuredText</a></li>
<li><a href="/wiki/SCRIPT_(markup)" title="SCRIPT (markup)">SCRIPT (markup)</a></li>
<li><a href="/wiki/Style_sheet_language" title="Style sheet language">Style sheet language</a></li></ul>
<div class="mw-heading mw-heading2"><h2 id="Notes">Notes</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=18" title="Edit section: Notes"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<style data-mw-deduplicate="TemplateStyles:r1327269900">.mw-parser-output .reflist-columns-2{column-width:30em}.mw-parser-output .reflist-columns-3{column-width:25em}body.skin-vector-2022 .mw-parser-output .reflist-columns-2{column-width:27em}body.skin-vector-2022 .mw-parser-output .reflist-columns-3{column-width:22.5em}.mw-parser-output .references[data-mw-group=upper-alpha]{list-style-type:upper-alpha}.mw-parser-output .references[data-mw-group=upper-roman]{list-style-type:upper-roman}.mw-parser-output .references[data-mw-group=lower-alpha]{list-style-type:lower-alpha}.mw-parser-output .references[data-mw-group=lower-greek]{list-style-type:lower-greek}.mw-parser-output .references[data-mw-group=lower-roman]{list-style-type:lower-roman}.mw-parser-output div.reflist-liststyle-upper-alpha .references{list-style-type:upper-alpha}.mw-parser-output div.reflist-liststyle-upper-roman .references{list-style-type:upper-roman}.mw-parser-output div.reflist-liststyle-lower-alpha .references{list-style-type:lower-alpha}.mw-parser-output div.reflist-liststyle-lower-greek .references{list-style-type:lower-greek}.mw-parser-output div.reflist-liststyle-lower-roman .references{list-style-type:lower-roman}</style><div>
<div class="mw-references-wrap"><ol class="references" data-mw-group="lower-alpha">
<li id="cite&#95;note-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-14">^</a></b></span> <span class="reference-text">HTML is a particular instance of SGML, whereas LaTeX is designed with the separation-between-content-and-design philosophy of Scribe in mind.</span>
</li>
</ol></div></div>
<div class="mw-heading mw-heading2"><h2 id="References">References</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=19" title="Edit section: References"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1327269900" /><div>
<div class="mw-references-wrap mw-references-columns"><ol class="references">
<li id="cite&#95;note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text"><style data-mw-deduplicate="TemplateStyles:r1238218222">.mw-parser-output cite.citation{font-style:inherit;word-wrap:break-word}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation:target{background-color:rgba(0,127,255,0.133)}.mw-parser-output .id-lock-free.id-lock-free a{background:url("//upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-limited.id-lock-limited a,.mw-parser-output .id-lock-registration.id-lock-registration a{background:url("//upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-subscription.id-lock-subscription a{background:url("//upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .cs1-ws-icon a{background:url("//upload.wikimedia.org/wikipedia/commons/4/4c/Wikisource-logo.svg")right 0.1em center/12px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-free a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-limited a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-registration a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-subscription a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .cs1-ws-icon a{background-size:contain;padding:0 1em 0 0}.mw-parser-output .cs1-code{color:inherit;background:inherit;border:none;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;color:var(--color-error,#d33)}.mw-parser-output .cs1-visible-error{color:var(--color-error,#d33)}.mw-parser-output .cs1-maint{display:none;color:#085;margin-left:0.3em}.mw-parser-output .cs1-kern-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right{padding-right:0.2em}.mw-parser-output .citation .mw-selflink{font-weight:inherit}@media screen{.mw-parser-output .cs1-format{font-size:95%}html.skin-theme-clientpref-night .mw-parser-output .cs1-maint{color:#18911f}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .cs1-maint{color:#18911f}}</style><cite class="citation news cs1"><a rel="nofollow" class="external text" href="https://www.britannica.com/technology/markup-language">"markup language | Definition, Examples, &amp; Facts"</a>. <i>Encyclopedia Britannica</i>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20201026080719/https://www.britannica.com/technology/markup-language">Archived</a> from the original on 2020-10-26<span class="reference-accessdate">. Retrieved <span class="nowrap">2022-08-17</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.jtitle=Encyclopedia+Britannica&amp;rft.atitle=markup+language+%7C+Definition%2C+Examples%2C+%26+Facts&amp;rft&#95;id=https%3A%2F%2Fwww.britannica.com%2Ftechnology%2Fmarkup-language&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite id="CITEREFSiechertBott2013" class="citation book cs1">Siechert, Carl; Bott, Ed (2013). <a rel="nofollow" class="external text" href="https://books.google.com/books?id=TbhCAwAAQBAJ"><i>Microsoft Office Inside Out: 2013 Edition</i></a>. Pearson Education. p.&#160;305. <a href="/wiki/ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a>&#160;<a href="/wiki/Special:BookSources/978-0735669062" title="Special:BookSources/978-0735669062"><bdi>978-0735669062</bdi></a>. <q>Some reviewers prefer going old school by using a red pen on printed output</q></cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=book&amp;rft.btitle=Microsoft+Office+Inside+Out%3A+2013+Edition&amp;rft.pages=305&amp;rft.pub=Pearson+Education&amp;rft.date=2013&amp;rft.isbn=978-0735669062&amp;rft.aulast=Siechert&amp;rft.aufirst=Carl&amp;rft.au=Bott%2C+Ed&amp;rft&#95;id=https%3A%2F%2Fbooks.google.com%2Fbooks%3Fid%3DTbhCAwAAQBAJ&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://sgmljs.net/docs/markdown-typography-examples.html#">"SGML Markdown Typography Documentation"</a>. <i>smljs.net</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2025-01-02</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=smljs.net&amp;rft.atitle=SGML+Markdown+Typography+Documentation&amp;rft&#95;id=https%3A%2F%2Fsgmljs.net%2Fdocs%2Fmarkdown-typography-examples.html%23&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text">Allan Woods, <i>Modern Newspaper Production</i> (New York: Harper &amp; Row, 1963), 85; Stewart Harral, <i>Profitable Public Relations for Newspapers</i> (Ann Arbor: J. W. Edwards, 1957), 76; and <i>Chiarella v. United States</i>, <a href="/wiki/List_of_United_States_Supreme_Court_cases,_volume_445" title="List of United States Supreme Court cases, volume 445">445</a>&#32;<a href="/wiki/United_States_Reports" title="United States Reports">U.S.</a> <a rel="nofollow" class="external text" href="https://supreme.justia.com/cases/federal/us/445/222/">222</a>&#32;(1980).</span>
</li>
<li id="cite&#95;note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><i>From the Notebooks of H. J. H &amp; D. H. An on Composition</i>, Kingsport Press Inc., undated (1960s).</span>
</li>
<li id="cite&#95;note-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite id="CITEREFCoombsRenearDeRose1987" class="citation journal cs1">Coombs, James H.; Renear, Allen H.; DeRose, Steven J. (November 1987). <a rel="nofollow" class="external text" href="http://xml.coverpages.org/coombs.html">"Markup systems and the future of scholarly text processing"</a>. <i><a href="/wiki/Communications_of_the_ACM" title="Communications of the ACM">Communications of the ACM</a></i>. <b>30</b> (11): <span class="nowrap">933–</span>947. <a href="/wiki/CiteSeerX_(identifier)" class="mw-redirect" title="CiteSeerX (identifier)">CiteSeerX</a>&#160;<span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.515.5618">10.1.1.515.5618</a></span>. <a href="/wiki/Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://doi.org/10.1145%2F32206.32209">10.1145/32206.32209</a>. <a href="/wiki/S2CID_(identifier)" class="mw-redirect" title="S2CID (identifier)">S2CID</a>&#160;<a rel="nofollow" class="external text" href="https://api.semanticscholar.org/CorpusID:59941802">59941802</a>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20190512040939/http://xml.coverpages.org/coombs.html">Archived</a> from the original on 2019-05-12<span class="reference-accessdate">. Retrieved <span class="nowrap">2005-04-19</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.jtitle=Communications+of+the+ACM&amp;rft.atitle=Markup+systems+and+the+future+of+scholarly+text+processing&amp;rft.volume=30&amp;rft.issue=11&amp;rft.pages=933-947&amp;rft.date=1987-11&amp;rft&#95;id=https%3A%2F%2Fciteseerx.ist.psu.edu%2Fviewdoc%2Fsummary%3Fdoi%3D10.1.1.515.5618%23id-name%3DCiteSeerX&amp;rft&#95;id=https%3A%2F%2Fapi.semanticscholar.org%2FCorpusID%3A59941802%23id-name%3DS2CID&amp;rft&#95;id=info%3Adoi%2F10.1145%2F32206.32209&amp;rft.aulast=Coombs&amp;rft.aufirst=James+H.&amp;rft.au=Renear%2C+Allen+H.&amp;rft.au=DeRose%2C+Steven+J.&amp;rft&#95;id=http%3A%2F%2Fxml.coverpages.org%2Fcoombs.html&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite id="CITEREFBray2003" class="citation web cs1"><a href="/wiki/Tim_Bray" title="Tim Bray">Bray, Tim</a> (9 April 2003). <a rel="nofollow" class="external text" href="https://www.tbray.org/ongoing/When/200x/2003/04/09/SemanticMarkup#p-1">"On Semantics and Markup, Taxonomy of Markup"</a>. <i>www.tbray.org</i>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20210227074013/https://www.tbray.org/ongoing/When/200x/2003/04/09/SemanticMarkup#p-1">Archived</a> from the original on 2021-02-27<span class="reference-accessdate">. Retrieved <span class="nowrap">2021-08-16</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=www.tbray.org&amp;rft.atitle=On+Semantics+and+Markup%2C+Taxonomy+of+Markup&amp;rft.date=2003-04-09&amp;rft.aulast=Bray&amp;rft.aufirst=Tim&amp;rft&#95;id=https%3A%2F%2Fwww.tbray.org%2Fongoing%2FWhen%2F200x%2F2003%2F04%2F09%2FSemanticMarkup%23p-1&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text">Michael Downes.<a rel="nofollow" class="external text" href="https://www.ams.org/notices/200211/comm-downes.pdf">"TEX and LATEX 2e"</a> <a rel="nofollow" class="external text" href="https://web.archive.org/web/20210524182136/http://www.ams.org/notices/200211/comm-downes.pdf">Archived</a> 2021-05-24 at the <a href="/wiki/Wayback_Machine" title="Wayback Machine">Wayback Machine</a></span>
</li>
<li id="cite&#95;note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text">Rice, Stanley. "Editorial Text Structures (with some relations to information structures and format controls in computerized composition)". American National Standards Institute, March 17, 1970.</span>
</li>
<li id="cite&#95;note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://www.drdobbs.com/blog/archives/2009/08/beyond_html_an.html">"2009 interview with SGML creator Charles F. Goldfarb"</a>. <a href="/wiki/Dr._Dobb%27s_Journal" title="Dr. Dobb&#39;s Journal">Dr. Dobb's Journal</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2010-07-18</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=2009+interview+with+SGML+creator+Charles+F.+Goldfarb&amp;rft.pub=Dr.+Dobb%27s+Journal&amp;rft&#95;id=http%3A%2F%2Fwww.drdobbs.com%2Fblog%2Farchives%2F2009%2F08%2Fbeyond&#95;html&#95;an.html&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span><sup class="noprint Inline-Template"><span style="white-space: nowrap;">&#91;<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title="&#160;Dead link tagged January 2018">permanent dead link</span></a></i>&#93;</span></sup></span>
</li>
<li id="cite&#95;note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text">Daniel Gilly. <a rel="nofollow" class="external text" href="http://web.deu.edu.tr/doc/oreily/unix/unixnut/ch12_01.htm"><i>Unix in a nutshell: Chapter 12. Groff and Troff</i></a> <a rel="nofollow" class="external text" href="https://web.archive.org/web/20160105180006/http://web.deu.edu.tr/doc/oreily/unix/unixnut/ch12_01.htm">Archived</a> 2016-01-05 at the <a href="/wiki/Wayback_Machine" title="Wayback Machine">Wayback Machine</a>. O'Reilly Books, 1992. <link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><a href="/wiki/ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a>&#160;<a href="/wiki/Special:BookSources/1-56592-001-5" title="Special:BookSources/1-56592-001-5"><bdi>1-56592-001-5</bdi></a></span>
</li>
<li id="cite&#95;note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text">Reid, Brian. "Scribe: A Document Specification Language and its Compiler". Ph.D. thesis, Carnegie-Mellon University, Pittsburgh PA. Also available as Technical Report CMU-CS-81-100.</span>
</li>
<li id="cite&#95;note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite id="CITEREFReid" class="citation web cs1"><a href="/wiki/Brian_Reid_(computer_scientist)" title="Brian Reid (computer scientist)">Reid, Brian</a>. <a rel="nofollow" class="external text" href="http://xml.coverpages.org/mt98-papers.html#reid">"20 Years of Abstract Markup - Any Progress?"</a>. <i>xml.coverpages.org</i>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20190501150514/http://xml.coverpages.org/mt98-papers.html#reid">Archived</a> from the original on 2019-05-01<span class="reference-accessdate">. Retrieved <span class="nowrap">2021-08-16</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=xml.coverpages.org&amp;rft.atitle=20+Years+of+Abstract+Markup+-+Any+Progress%3F&amp;rft.aulast=Reid&amp;rft.aufirst=Brian&amp;rft&#95;id=http%3A%2F%2Fxml.coverpages.org%2Fmt98-papers.html%23reid&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-15">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.iso.org/standard/16387.html">"ISO 8879:1986"</a>. <i>ISO</i>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20210817024719/https://www.iso.org/standard/16387.html">Archived</a> from the original on 2021-08-17<span class="reference-accessdate">. Retrieved <span class="nowrap">2021-08-15</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=ISO&amp;rft.atitle=ISO+8879%3A1986&amp;rft&#95;id=https%3A%2F%2Fwww.iso.org%2Fstandard%2F16387.html&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-16">^</a></b></span> <span class="reference-text">Tim Berners-Lee, "<a rel="nofollow" class="external text" href="https://www.w3.org/History/1989/proposal.html">Information Management: A Proposal</a>". CERN (March 1989, May 1990). W3C. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20100401051011/https://www.w3.org/History/1989/proposal.html">Archived</a> 2010-04-01 at the <a href="/wiki/Wayback_Machine" title="Wayback Machine">Wayback Machine</a></span>
</li>
<li id="cite&#95;note-tagshtml-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-tagshtml_17-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.w3.org/History/19921103-hypertext/hypertext/WWW/MarkUp/Tags.html">"Tags used in HTML"</a>. World Wide Web Consortium. November 3, 1992. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20100131184344/http://www.w3.org/History/19921103-hypertext/hypertext/WWW/MarkUp/Tags.html">Archived</a> from the original on 2010-01-31<span class="reference-accessdate">. Retrieved <span class="nowrap">2021-08-16</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Tags+used+in+HTML&amp;rft.pub=World+Wide+Web+Consortium&amp;rft.date=1992-11-03&amp;rft&#95;id=https%3A%2F%2Fwww.w3.org%2FHistory%2F19921103-hypertext%2Fhypertext%2FWWW%2FMarkUp%2FTags.html&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://lists.w3.org/Archives/Public/www-talk/1991SepOct/0003.html">"First mention of HTML Tags on the www-talk mailing list"</a>. World Wide Web Consortium. October 29, 1991. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20210808223716/https://lists.w3.org/Archives/Public/www-talk/1991SepOct/0003.html">Archived</a> from the original on August 8, 2021<span class="reference-accessdate">. Retrieved <span class="nowrap">August 16,</span> 2021</span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=First+mention+of+HTML+Tags+on+the+www-talk+mailing+list&amp;rft.pub=World+Wide+Web+Consortium&amp;rft.date=1991-10-29&amp;rft&#95;id=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-talk%2F1991SepOct%2F0003.html&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-19">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.w3.org/TR/1999/REC-html401-19991224/index/elements">"Index of elements in HTML 4"</a>. World Wide Web Consortium. December 24, 1999. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20070505172415/https://www.w3.org/TR/1999/REC-html401-19991224/index/elements">Archived</a> from the original on 2007-05-05<span class="reference-accessdate">. Retrieved <span class="nowrap">2021-08-16</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Index+of+elements+in+HTML+4&amp;rft.pub=World+Wide+Web+Consortium&amp;rft.date=1999-12-24&amp;rft&#95;id=https%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC-html401-19991224%2Findex%2Felements&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-20"><span class="mw-cite-backlink"><b><a href="#cite_ref-20">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite id="CITEREFBerners-LeeConnolly1993" class="citation web cs1">Berners-Lee, Tim; Connolly, Dan (June 1993). <a rel="nofollow" class="external text" href="https://www.w3.org/MarkUp/draft-ietf-iiir-html-01.txt">"Hypertext Markup Language (HTML) Internet Draft"</a>. <i><a href="/wiki/World_Wide_Web_Consortium" title="World Wide Web Consortium">World Wide Web Consortium</a></i>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20170103041713/https://www.w3.org/MarkUp/draft-ietf-iiir-html-01.txt">Archived</a> from the original on 2017-01-03<span class="reference-accessdate">. Retrieved <span class="nowrap">2025-10-13</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=World+Wide+Web+Consortium&amp;rft.atitle=Hypertext+Markup+Language+%28HTML%29+Internet+Draft&amp;rft.date=1993-06&amp;rft.aulast=Berners-Lee&amp;rft.aufirst=Tim&amp;rft.au=Connolly%2C+Dan&amp;rft&#95;id=https%3A%2F%2Fwww.w3.org%2FMarkUp%2Fdraft-ietf-iiir-html-01.txt&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-21">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite id="CITEREFTim&#95;Berners-Lee1991" class="citation web cs1"><a href="/wiki/Tim_Berners-Lee" title="Tim Berners-Lee">Tim Berners-Lee</a> (December 9, 1991). <a rel="nofollow" class="external text" href="https://lists.w3.org/Archives/Public/www-talk/1991NovDec/0020.html">"Re: SGML/HTML docs, X Browser (archived www-talk mailing list post)"</a>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20210703084047/https://lists.w3.org/Archives/Public/www-talk/1991NovDec/0020.html">Archived</a> from the original on July 3, 2021<span class="reference-accessdate">. Retrieved <span class="nowrap">August 16,</span> 2021</span>. <q>SGML is very general. HTML is a specific application of the SGML basic syntax applied to hypertext documents with a simple structure.</q></cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Re%3A+SGML%2FHTML+docs%2C+X+Browser+%28archived+www-talk+mailing+list+post%29&amp;rft.date=1991-12-09&amp;rft.au=Tim+Berners-Lee&amp;rft&#95;id=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-talk%2F1991NovDec%2F0020.html&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text">DeRose, Steven J. "The SGML FAQ Book". Boston: Kluwer Academic Publishers, 1997. <link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><a href="/wiki/ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a>&#160;<a href="/wiki/Special:BookSources/0-7923-9943-9" title="Special:BookSources/0-7923-9943-9"><bdi>0-7923-9943-9</bdi></a></span>
</li>
<li id="cite&#95;note-23"><span class="mw-cite-backlink"><b><a href="#cite_ref-23">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.w3.org/TR/xml11/">"Extensible Markup Language (XML) 1.1 (Second Edition)"</a>. W3C. 16 August 2006. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20210811223058/https://www.w3.org/TR/xml11/">Archived</a> from the original on 2021-08-11<span class="reference-accessdate">. Retrieved <span class="nowrap">2021-08-16</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Extensible+Markup+Language+%28XML%29+1.1+%28Second+Edition%29&amp;rft.pub=W3C&amp;rft.date=2006-08-16&amp;rft&#95;id=https%3A%2F%2Fwww.w3.org%2FTR%2Fxml11%2F&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-ielement-24"><span class="mw-cite-backlink">^ <a href="#cite_ref-ielement_24-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-ielement_24-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite id="CITEREFHickson" class="citation web cs1">Hickson, Ian. <a rel="nofollow" class="external text" href="https://html.spec.whatwg.org/#the-i-element">"HTML Living Standard"</a>. <i>WHATWG — HTML</i>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20180308105412/https://html.spec.whatwg.org/#the-i-element">Archived</a> from the original on 8 March 2018<span class="reference-accessdate">. Retrieved <span class="nowrap">13 September</span> 2020</span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=WHATWG+%E2%80%94+HTML&amp;rft.atitle=HTML+Living+Standard&amp;rft.aulast=Hickson&amp;rft.aufirst=Ian&amp;rft&#95;id=https%3A%2F%2Fhtml.spec.whatwg.org%2F%23the-i-element&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-25"><span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222" /><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20140703122400/https://www.tei-c.org/Guidelines/">"TEI Guidelines for Electronic Text Encoding and Interchange"</a>. Tei-c.org. Archived from <a rel="nofollow" class="external text" href="https://www.tei-c.org/Guidelines/">the original</a> on 2014-07-03<span class="reference-accessdate">. Retrieved <span class="nowrap">2021-08-16</span></span>.</cite><span title="ctx&#95;ver=Z39.88-2004&amp;rft&#95;val&#95;fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=TEI+Guidelines+for+Electronic+Text+Encoding+and+Interchange&amp;rft.pub=Tei-c.org&amp;rft&#95;id=https%3A%2F%2Fwww.tei-c.org%2FGuidelines%2F&amp;rfr&#95;id=info%3Asid%2Fen.wikipedia.org%3AMarkup+language" class="Z3988"></span></span>
</li>
<li id="cite&#95;note-26"><span class="mw-cite-backlink"><b><a href="#cite_ref-26">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="https://www.w3.org/TR/2002/WD-XHTMLplusMathMLplusSVG-20020809/">An XHTML + MathML + SVG Profile</a> <a rel="nofollow" class="external text" href="https://web.archive.org/web/20210719215421/https://www.w3.org/TR/2002/WD-XHTMLplusMathMLplusSVG-20020809/">Archived</a> 2021-07-19 at the <a href="/wiki/Wayback_Machine" title="Wayback Machine">Wayback Machine</a>. W3C. August 9, 2002. Retrieved 2021-08-16.</span>
</li>
</ol></div></div>
<div class="mw-heading mw-heading2"><h2 id="External_links">External links</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Markup_language&amp;action=edit&amp;section=20" title="Edit section: External links"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
<style data-mw-deduplicate="TemplateStyles:r1235611614">.mw-parser-output .spoken-wikipedia{border:1px solid #a2a9b1;background-color:var(--background-color-interactive-subtle,#f8f9fa);margin:0.5em 0;padding:0.2em;line-height:1.5em;font-size:90%}.mw-parser-output .spoken-wikipedia-header{text-align:center}.mw-parser-output .spoken-wikipedia-listen-to{font-weight:bold}.mw-parser-output .spoken-wikipedia-files{text-align:center;margin-top:10px;margin-bottom:0.4em}.mw-parser-output .spoken-wikipedia-icon{float:left;margin-left:5px;margin-top:10px}.mw-parser-output .spoken-wikipedia-disclaimer{margin-left:60px;margin-top:10px;font-size:95%;line-height:1.4em}.mw-parser-output .spoken-wikipedia-footer{margin-top:10px;text-align:center}@media(min-width:720px){.mw-parser-output .spoken-wikipedia{width:20em;float:right;clear:right;margin-left:1em}}</style><div class="spoken-wikipedia noprint haudio"><div class="spoken-wikipedia-header"><span class="spoken-wikipedia-listen-to">Listen to this article</span> (<span class="duration"><span class="min">20</span> minutes</span>)</div><div class="spoken-wikipedia-files"><figure class="mw-halign-center" typeof="mw:File"><span><audio id="mwe_player_0" controls="" preload="none" data-mw-tmh="" class="mw-file-element" width="200" style="width:200px;" data-durationhint="1227" data-mwtitle="Markup_language.ogg" data-mwprovider="wikimediacommons"><source src="//upload.wikimedia.org/wikipedia/commons/1/16/Markup_language.ogg" type="audio/ogg; codecs=&quot;vorbis&quot;" data-width="0" data-height="0" /><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/1/16/Markup_language.ogg/Markup_language.ogg.mp3" type="audio/mpeg" data-transcodekey="mp3" data-width="0" data-height="0" /></audio></span><figcaption></figcaption></figure>
</div><div class="spoken-wikipedia-icon"><span typeof="mw:File"><span title="Spoken Wikipedia"><img alt="Spoken Wikipedia icon" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Gnome-mime-sound-openclipart.svg/60px-Gnome-mime-sound-openclipart.svg.png" decoding="async" width="45" height="45" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Gnome-mime-sound-openclipart.svg/120px-Gnome-mime-sound-openclipart.svg.png 1.5x" data-file-width="160" data-file-height="160" /></span></span></div><div class="spoken-wikipedia-disclaimer"><a href="/wiki/File:Markup_language.ogg" title="File:Markup language.ogg">This audio file</a> was created from a revision of this article dated 6&#160;May&#160;2006<span style="display: none;">&#160;(<span class="bday dtstart published updated itvstart">2006-05-06</span>)</span>, and does not reflect subsequent edits.</div><div class="spoken-wikipedia-footer">(<a href="/wiki/Wikipedia:Media_help" class="mw-redirect" title="Wikipedia:Media help">Audio help</a>&#160;· <a href="/wiki/Wikipedia:Spoken_articles" title="Wikipedia:Spoken articles">More spoken articles</a>)</div></div>
<style data-mw-deduplicate="TemplateStyles:r1314755338">.mw-parser-output .side-box{margin:4px 0;box-sizing:border-box;border:1px solid #aaa;font-size:88%;line-height:1.25em;background-color:var(--background-color-interactive-subtle,#f8f9fa);color:inherit;display:flow-root}.mw-parser-output .infobox .side-box{font-size:100%}.mw-parser-output .side-box-abovebelow,.mw-parser-output .side-box-text{padding:0.25em 0.9em}.mw-parser-output .side-box-image{padding:2px 0 2px 0.9em;text-align:center}.mw-parser-output .side-box-imageright{padding:2px 0.9em 2px 0;text-align:center}@media(min-width:500px){.mw-parser-output .side-box-flex{display:flex;align-items:center}.mw-parser-output .side-box-text{flex:1;min-width:0}}@media(min-width:640px){.mw-parser-output .side-box{width:238px}.mw-parser-output .side-box-right{clear:right;float:right;margin-left:1em}.mw-parser-output .side-box-left{margin-right:1em}}</style><style data-mw-deduplicate="TemplateStyles:r1311551236">@media print{body.ns-0 .mw-parser-output .sistersitebox{display:none!important}}@media screen{html.skin-theme-clientpref-night .mw-parser-output .sistersitebox img[src*="Wiktionary-logo-en-v2.svg"]{filter:invert(1)brightness(55%)contrast(250%)hue-rotate(180deg)}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .sistersitebox img[src*="Wiktionary-logo-en-v2.svg"]{filter:invert(1)brightness(55%)contrast(250%)hue-rotate(180deg)}}</style><div class="side-box side-box-right plainlinks sistersitebox"><style data-mw-deduplicate="TemplateStyles:r1126788409">.mw-parser-output .plainlist ol,.mw-parser-output .plainlist ul{line-height:inherit;list-style:none;margin:0;padding:0}.mw-parser-output .plainlist ol li,.mw-parser-output .plainlist ul li{margin-bottom:0}</style>
<div class="side-box-flex">
<div class="side-box-image"><span class="noviewer" typeof="mw:File"><a href="/wiki/File:Wiktionary-logo-en-v2.svg" class="mw-file-description"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/99/Wiktionary-logo-en-v2.svg/40px-Wiktionary-logo-en-v2.svg.png" decoding="async" width="40" height="40" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/99/Wiktionary-logo-en-v2.svg/60px-Wiktionary-logo-en-v2.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/99/Wiktionary-logo-en-v2.svg/120px-Wiktionary-logo-en-v2.svg.png 2x" data-file-width="512" data-file-height="512" /></a></span></div>
<div class="side-box-text plainlist">Look up <i><b><a href="https://en.wiktionary.org/wiki/markup_language" class="extiw" title="wiktionary:markup language">markup language</a></b></i> in Wiktionary, the free dictionary.</div></div>
</div>
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1314755338" /><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1311551236" /><div class="side-box side-box-right plainlinks sistersitebox"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1126788409" />
<div class="side-box-flex">
<div class="side-box-image"><span class="noviewer" typeof="mw:File"><a href="/wiki/File:Commons-logo.svg" class="mw-file-description"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png" decoding="async" width="30" height="40" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/60px-Commons-logo.svg.png 1.5x" data-file-width="1024" data-file-height="1376" /></a></span></div>
<div class="side-box-text plainlist">Wikimedia Commons has media related to <span style="font-weight: bold; font-style: italic;"><a href="https://commons.wikimedia.org/wiki/Category:Markup_languages" class="extiw" title="commons:Category:Markup languages">Markup languages</a></span>.</div></div>
</div>
<div class="navbox-styles"><style data-mw-deduplicate="TemplateStyles:r1129693374">.mw-parser-output .hlist dl,.mw-parser-output .hlist ol,.mw-parser-output .hlist ul{margin:0;padding:0}.mw-parser-output .hlist dd,.mw-parser-output .hlist dt,.mw-parser-output .hlist li{margin:0;display:inline}.mw-parser-output .hlist.inline,.mw-parser-output .hlist.inline dl,.mw-parser-output .hlist.inline ol,.mw-parser-output .hlist.inline ul,.mw-parser-output .hlist dl dl,.mw-parser-output .hlist dl ol,.mw-parser-output .hlist dl ul,.mw-parser-output .hlist ol dl,.mw-parser-output .hlist ol ol,.mw-parser-output .hlist ol ul,.mw-parser-output .hlist ul dl,.mw-parser-output .hlist ul ol,.mw-parser-output .hlist ul ul{display:inline}.mw-parser-output .hlist .mw-empty-li{display:none}.mw-parser-output .hlist dt::after{content:": "}.mw-parser-output .hlist dd::after,.mw-parser-output .hlist li::after{content:" · ";font-weight:bold}.mw-parser-output .hlist dd:last-child::after,.mw-parser-output .hlist dt:last-child::after,.mw-parser-output .hlist li:last-child::after{content:none}.mw-parser-output .hlist dd dd:first-child::before,.mw-parser-output .hlist dd dt:first-child::before,.mw-parser-output .hlist dd li:first-child::before,.mw-parser-output .hlist dt dd:first-child::before,.mw-parser-output .hlist dt dt:first-child::before,.mw-parser-output .hlist dt li:first-child::before,.mw-parser-output .hlist li dd:first-child::before,.mw-parser-output .hlist li dt:first-child::before,.mw-parser-output .hlist li li:first-child::before{content:" (";font-weight:normal}.mw-parser-output .hlist dd dd:last-child::after,.mw-parser-output .hlist dd dt:last-child::after,.mw-parser-output .hlist dd li:last-child::after,.mw-parser-output .hlist dt dd:last-child::after,.mw-parser-output .hlist dt dt:last-child::after,.mw-parser-output .hlist dt li:last-child::after,.mw-parser-output .hlist li dd:last-child::after,.mw-parser-output .hlist li dt:last-child::after,.mw-parser-output .hlist li li:last-child::after{content:")";font-weight:normal}.mw-parser-output .hlist ol{counter-reset:listitem}.mw-parser-output .hlist ol>li{counter-increment:listitem}.mw-parser-output .hlist ol>li::before{content:" "counter(listitem)"\a0 "}.mw-parser-output .hlist dd ol>li:first-child::before,.mw-parser-output .hlist dt ol>li:first-child::before,.mw-parser-output .hlist li ol>li:first-child::before{content:" ("counter(listitem)"\a0 "}</style><style data-mw-deduplicate="TemplateStyles:r1314944253">.mw-parser-output .navbox{box-sizing:border-box;border:1px solid #a2a9b1;width:100%;clear:both;font-size:88%;text-align:center;padding:1px;margin:1em auto 0}.mw-parser-output .navbox .navbox{margin-top:0}.mw-parser-output .navbox+.navbox,.mw-parser-output .navbox+.navbox-styles+.navbox{margin-top:-1px}.mw-parser-output .navbox-inner,.mw-parser-output .navbox-subgroup{width:100%}.mw-parser-output .navbox-group,.mw-parser-output .navbox-title,.mw-parser-output .navbox-abovebelow{padding:0.25em 1em;line-height:1.5em;text-align:center}.mw-parser-output .navbox-group{white-space:nowrap;text-align:right}.mw-parser-output .navbox,.mw-parser-output .navbox-subgroup{background-color:#fdfdfd;color:inherit}.mw-parser-output .navbox-list{line-height:1.5em;border-color:#fdfdfd}.mw-parser-output .navbox-list-with-group{text-align:left;border-left-width:2px;border-left-style:solid}.mw-parser-output tr+tr>.navbox-abovebelow,.mw-parser-output tr+tr>.navbox-group,.mw-parser-output tr+tr>.navbox-image,.mw-parser-output tr+tr>.navbox-list{border-top:2px solid #fdfdfd}.mw-parser-output .navbox-title{background-color:#ccf;color:inherit}.mw-parser-output .navbox-abovebelow,.mw-parser-output .navbox-group,.mw-parser-output .navbox-subgroup .navbox-title{background-color:#ddf;color:inherit}.mw-parser-output .navbox-subgroup .navbox-group,.mw-parser-output .navbox-subgroup .navbox-abovebelow{background-color:#e6e6ff;color:inherit}.mw-parser-output .navbox-even{background-color:#f7f7f7;color:inherit}.mw-parser-output .navbox-odd{background-color:transparent;color:inherit}.mw-parser-output .navbox .hlist td dl,.mw-parser-output .navbox .hlist td ol,.mw-parser-output .navbox .hlist td ul,.mw-parser-output .navbox td.hlist dl,.mw-parser-output .navbox td.hlist ol,.mw-parser-output .navbox td.hlist ul{padding:0.125em 0}.mw-parser-output .navbox .navbar{display:block;font-size:100%}.mw-parser-output .navbox-title .navbar{float:left;text-align:left;margin-right:0.5em}body.skin--responsive .mw-parser-output .navbox-image img{max-width:none!important}@media print{body.ns-0 .mw-parser-output .navbox{display:none!important}}</style></div><div role="navigation" class="navbox" aria-labelledby="Markup&#95;language&#95;varieties599" style="padding:3px"><table class="nowraplinks mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1129693374" /><style data-mw-deduplicate="TemplateStyles:r1239400231">.mw-parser-output .navbar{display:inline;font-size:88%;font-weight:normal}.mw-parser-output .navbar-collapse{float:left;text-align:left}.mw-parser-output .navbar-boxtext{word-spacing:0}.mw-parser-output .navbar ul{display:inline-block;white-space:nowrap;line-height:inherit}.mw-parser-output .navbar-brackets::before{margin-right:-0.125em;content:"[ "}.mw-parser-output .navbar-brackets::after{margin-left:-0.125em;content:" ]"}.mw-parser-output .navbar li{word-spacing:-0.125em}.mw-parser-output .navbar a>span,.mw-parser-output .navbar a>abbr{text-decoration:inherit}.mw-parser-output .navbar-mini abbr{font-variant:small-caps;border-bottom:none;text-decoration:none;cursor:inherit}.mw-parser-output .navbar-ct-full{font-size:114%;margin:0 7em}.mw-parser-output .navbar-ct-mini{font-size:114%;margin:0 4em}html.skin-theme-clientpref-night .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}@media(prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}}@media print{.mw-parser-output .navbar{display:none!important}}</style><div class="navbar plainlinks hlist navbar-mini"><ul><li class="nv-view"><a href="/wiki/Template:Markup_languages" title="Template:Markup languages"><abbr title="View this template">v</abbr></a></li><li class="nv-talk"><a href="/wiki/Template_talk:Markup_languages" title="Template talk:Markup languages"><abbr title="Discuss this template">t</abbr></a></li><li class="nv-edit"><a href="/wiki/Special:EditPage/Template:Markup_languages" title="Special:EditPage/Template:Markup languages"><abbr title="Edit this template">e</abbr></a></li></ul></div><div id="Markup&#95;language&#95;varieties599" style="font-size:114%;margin:0 4em"><a class="mw-selflink selflink">Markup language</a> varieties</div></th></tr><tr><td colspan="2" class="navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/List_of_document_markup_languages" title="List of document markup languages">Document</a></li>
<li><a href="/wiki/General-purpose_markup_language" title="General-purpose markup language">General-purpose</a></li>
<li><a href="/wiki/GIS_file_formats" class="mw-redirect" title="GIS file formats">Geographic information</a></li>
<li><a href="/wiki/Lightweight_markup_language" title="Lightweight markup language">Lightweight</a></li>
<li><a href="/wiki/Mathematical_markup_language" title="Mathematical markup language">Mathematical</a></li>
<li><a href="/wiki/Page_description_markup_language" class="mw-redirect" title="Page description markup language">Page description</a></li>
<li><a href="/wiki/Playlist_markup_language" title="Playlist markup language">Playlist</a></li>
<li><a href="/wiki/List_of_user_interface_markup_languages" title="List of user interface markup languages">User interface</a></li>
<li><a href="/wiki/Vector_graphics_markup_language" class="mw-redirect" title="Vector graphics markup language">Vector graphics</a></li>
<li><a href="/wiki/List_of_XML_markup_languages" title="List of XML markup languages">XML</a></li>
<li><a href="/wiki/List_of_markup_languages#Unclassified" title="List of markup languages">Unclassified</a></li></ul>
</div></td></tr></tbody></table></div>
<div class="navbox-styles"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1129693374" /><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1314944253" /></div><div role="navigation" class="navbox" aria-labelledby="Types&#95;of&#95;computer&#95;language723" style="padding:3px"><table class="nowraplinks mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1129693374" /><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1239400231" /><div class="navbar plainlinks hlist navbar-mini"><ul><li class="nv-view"><a href="/wiki/Template:Computer_language" title="Template:Computer language"><abbr title="View this template">v</abbr></a></li><li class="nv-talk"><a href="/wiki/Template_talk:Computer_language" title="Template talk:Computer language"><abbr title="Discuss this template">t</abbr></a></li><li class="nv-edit"><a href="/wiki/Special:EditPage/Template:Computer_language" title="Special:EditPage/Template:Computer language"><abbr title="Edit this template">e</abbr></a></li></ul></div><div id="Types&#95;of&#95;computer&#95;language723" style="font-size:114%;margin:0 4em">Types of <a href="/wiki/Computer_language" title="Computer language">computer language</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Types</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Architecture_description_language" title="Architecture description language">Architecture description</a></li>
<li><a href="/wiki/Data_exchange#Data_exchange_languages" title="Data exchange">Data exchange</a></li>
<li><a href="/wiki/Hardware_description_language" title="Hardware description language">Hardware description</a></li>
<li><a href="/wiki/Knowledge_representation_language" class="mw-redirect" title="Knowledge representation language">Knowledge representation</a></li>
<li><a class="mw-selflink selflink">Markup</a></li>
<li><a href="/wiki/Modeling_language" title="Modeling language">Modeling</a></li>
<li><a href="/wiki/Programming_language" title="Programming language">Programming language</a></li>
<li><a href="/wiki/Query_language" title="Query language">Query</a></li>
<li><a href="/wiki/Shading_language" title="Shading language">Shading</a></li>
<li><a href="/wiki/Specification_language" title="Specification language">Specification</a></li>
<li><a href="/wiki/Style_sheet_language" title="Style sheet language">Stylesheet</a></li>
<li><a href="/wiki/Transformation_language" title="Transformation language">Transformation</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">See also</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="/wiki/Category:Lists_of_computer_languages" title="Category:Lists of computer languages">Category:Lists of computer languages</a></li>
<li><a href="/wiki/Category:Lists_of_programming_languages" title="Category:Lists of programming languages">Category:Lists of programming languages</a></li>
<li><a href="/wiki/List_of_programming_languages_by_type" title="List of programming languages by type">List of programming languages by type</a></li></ul>
</div></td></tr></tbody></table></div>
<div class="navbox-styles"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1129693374" /><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1314944253" /><style data-mw-deduplicate="TemplateStyles:r1038841319">.mw-parser-output .tooltip-dotted{border-bottom:1px dotted;cursor:help}</style><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1038841319" /><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1038841319" /></div><div role="navigation" class="navbox authority-control" aria-labelledby="Authority&#95;control&#95;databases&#95;frameless&amp;#124;text-top&amp;#124;10px&amp;#124;alt=Edit&#95;this&#95;at&#95;Wikidata&amp;#124;link=https&amp;#58;//www.wikidata.org/wiki/Q37045#identifiers&amp;#124;class=noprint&amp;#124;Edit&#95;this&#95;at&#95;Wikidata1651" style="padding:3px"><table class="nowraplinks hlist mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><div id="Authority&#95;control&#95;databases&#95;frameless&amp;#124;text-top&amp;#124;10px&amp;#124;alt=Edit&#95;this&#95;at&#95;Wikidata&amp;#124;link=https&amp;#58;//www.wikidata.org/wiki/Q37045#identifiers&amp;#124;class=noprint&amp;#124;Edit&#95;this&#95;at&#95;Wikidata1651" style="font-size:114%;margin:0 4em"><a href="/wiki/Help:Authority_control" title="Help:Authority control">Authority control databases</a> <span class="mw-valign-text-top noprint" typeof="mw:File/Frameless"><a href="https://www.wikidata.org/wiki/Q37045#identifiers" title="Edit this at Wikidata"><img alt="Edit this at Wikidata" src="//upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/20px-OOjs_UI_icon_edit-ltr-progressive.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="20" data-file-height="20" /></a></span></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">International</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"><ul><li><span class="uid"><a rel="nofollow" class="external text" href="https://d-nb.info/gnd/4561529-9">GND</a></span></li><li><span class="uid"><a rel="nofollow" class="external text" href="https://id.worldcat.org/fast/896070">FAST</a></span></li></ul></div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">National</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"><ul><li><span class="uid"><a rel="nofollow" class="external text" href="https://id.loc.gov/authorities/sh95002796">United States</a></span></li><li><span class="uid"><span class="rt-commentedText tooltip tooltip-dotted" title="Langages de balisage"><a rel="nofollow" class="external text" href="https://catalogue.bnf.fr/ark:/12148/cb133199588">France</a></span></span></li><li><span class="uid"><span class="rt-commentedText tooltip tooltip-dotted" title="Langages de balisage"><a rel="nofollow" class="external text" href="https://data.bnf.fr/ark:/12148/cb133199588">BnF data</a></span></span></li><li><span class="uid"><span class="rt-commentedText tooltip tooltip-dotted" title="značkovací jazyky"><a rel="nofollow" class="external text" href="https://aleph.nkp.cz/F/?func=find-c&amp;local_base=aut&amp;ccl_term=ica=ph161826&amp;CON_LNG=ENG">Czech Republic</a></span></span></li><li><span class="uid"><a rel="nofollow" class="external text" href="https://datos.bne.es/resource/XX539768">Spain</a></span></li><li><span class="uid"><a rel="nofollow" class="external text" href="https://www.nli.org.il/en/authorities/987007541929305171">Israel</a></span></li></ul></div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Other</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"><ul><li><span class="uid"><a rel="nofollow" class="external text" href="https://lux.collections.yale.edu/view/concept/a2b27c2e-7247-44da-ad03-a9a943ab0e5e">Yale LUX</a></span></li></ul></div></td></tr></tbody></table></div>
<!-- 
NewPP limit report
Parsed by mw‐web.eqiad.main‐8f8dcf6c‐qt5mc
Cached time: 20251227190517
Cache expiry: 1802
Reduced expiry: true
Complications: [vary‐revision‐sha1, show‐toc]
CPU time usage: 0.485 seconds
Real time usage: 0.675 seconds
Preprocessor visited node count: 3594/1000000
Revision size: 29896/2097152 bytes
Post‐expand include size: 74196/2097152 bytes
Template argument size: 6388/2097152 bytes
Highest expansion depth: 17/100
Expensive parser function count: 16/500
Unstrip recursion depth: 1/20
Unstrip post‐expand size: 103381/5000000 bytes
Lua time usage: 0.310/10.000 seconds
Lua memory usage: 6850613/52428800 bytes
Number of Wikibase entities loaded: 1/500
-->
<!--
Transclusion expansion time report (%,ms,calls,template)
100.00%  591.491      1 -total
 30.54%  180.634      2 Template:Reflist
 12.86%   76.082      1 Template:Cite_news
 11.52%   68.120      2 Template:Navbox
 11.41%   67.499      1 Template:Short_description
 11.34%   67.053      1 Template:Markup_languages
  9.57%   56.600      2 Template:Sister_project
  9.19%   54.357      2 Template:Side_box
  7.86%   46.481      6 Template:Main
  7.85%   46.411      3 Template:Citation_needed
-->

<!-- Saved in parser cache with key enwiki:pcache:18910:|#|:idhash:canonical and timestamp 20251227190517 and revision id 1329733839. Rendering was triggered because: page_view
 -->
</div><noscript><img src="https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?useformat=desktop&amp;type=1x1&amp;usesul3=1" alt="" width="1" height="1" style="border: none; position: absolute;"></noscript>
<div class="printfooter" data-nosnippet="">Retrieved from "<a dir="ltr" href="https://en.wikipedia.org/w/index.php?title=Markup_language&amp;oldid=1329733839">https://en.wikipedia.org/w/index.php?title=Markup_language&amp;oldid=1329733839</a>"</div></div>
					<div id="catlinks" class="catlinks" data-mw-interface=""><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Help:Category" title="Help:Category">Categories</a>: <ul><li><a href="/wiki/Category:Markup_languages" title="Category:Markup languages">Markup languages</a></li><li><a href="/wiki/Category:Formal_languages" title="Category:Formal languages">Formal languages</a></li><li><a href="/wiki/Category:American_inventions" title="Category:American inventions">American inventions</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/wiki/Category:Webarchive_template_wayback_links" title="Category:Webarchive template wayback links">Webarchive template wayback links</a></li><li><a href="/wiki/Category:All_articles_with_dead_external_links" title="Category:All articles with dead external links">All articles with dead external links</a></li><li><a href="/wiki/Category:Articles_with_dead_external_links_from_January_2018" title="Category:Articles with dead external links from January 2018">Articles with dead external links from January 2018</a></li><li><a href="/wiki/Category:Articles_with_permanently_dead_external_links" title="Category:Articles with permanently dead external links">Articles with permanently dead external links</a></li><li><a href="/wiki/Category:Articles_with_short_description" title="Category:Articles with short description">Articles with short description</a></li><li><a href="/wiki/Category:Short_description_is_different_from_Wikidata" title="Category:Short description is different from Wikidata">Short description is different from Wikidata</a></li><li><a href="/wiki/Category:All_articles_with_unsourced_statements" title="Category:All articles with unsourced statements">All articles with unsourced statements</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_February_2024" title="Category:Articles with unsourced statements from February 2024">Articles with unsourced statements from February 2024</a></li><li><a href="/wiki/Category:All_articles_with_vague_or_ambiguous_time" title="Category:All articles with vague or ambiguous time">All articles with vague or ambiguous time</a></li><li><a href="/wiki/Category:Vague_or_ambiguous_time_from_October_2025" title="Category:Vague or ambiguous time from October 2025">Vague or ambiguous time from October 2025</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_August_2008" title="Category:Articles with unsourced statements from August 2008">Articles with unsourced statements from August 2008</a></li><li><a href="/wiki/Category:All_articles_with_specifically_marked_weasel-worded_phrases" title="Category:All articles with specifically marked weasel-worded phrases">All articles with specifically marked weasel-worded phrases</a></li><li><a href="/wiki/Category:Articles_with_specifically_marked_weasel-worded_phrases_from_July_2022" title="Category:Articles with specifically marked weasel-worded phrases from July 2022">Articles with specifically marked weasel-worded phrases from July 2022</a></li><li><a href="/wiki/Category:Articles_with_hAudio_microformats" title="Category:Articles with hAudio microformats">Articles with hAudio microformats</a></li><li><a href="/wiki/Category:Spoken_articles" title="Category:Spoken articles">Spoken articles</a></li><li><a href="/wiki/Category:Commons_category_link_is_on_Wikidata" title="Category:Commons category link is on Wikidata">Commons category link is on Wikidata</a></li></ul></div></div>
				</div>
			</main>
			
		</div>
		<div class="mw-footer-container">
			
<footer id="footer" class="mw-footer" >
	<ul id="footer-info">
	<li id="footer-info-lastmod"> This page was last edited on 27 December 2025, at 18:30<span class="anonymous-show">&#160;(UTC)</span>.</li>
	<li id="footer-info-copyright">Text is available under the <a href="/wiki/Wikipedia:Text_of_the_Creative_Commons_Attribution-ShareAlike_4.0_International_License" title="Wikipedia:Text of the Creative Commons Attribution-ShareAlike 4.0 International License">Creative Commons Attribution-ShareAlike 4.0 License</a>;
additional terms may apply. By using this site, you agree to the <a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Terms_of_Use" class="extiw" title="foundation:Special:MyLanguage/Policy:Terms of Use">Terms of Use</a> and <a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy" class="extiw" title="foundation:Special:MyLanguage/Policy:Privacy policy">Privacy Policy</a>. Wikipedia® is a registered trademark of the <a rel="nofollow" class="external text" href="https://wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
</ul>

	<ul id="footer-places">
	<li id="footer-places-privacy"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy">Privacy policy</a></li>
	<li id="footer-places-about"><a href="/wiki/Wikipedia:About">About Wikipedia</a></li>
	<li id="footer-places-disclaimers"><a href="/wiki/Wikipedia:General_disclaimer">Disclaimers</a></li>
	<li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
	<li id="footer-places-legal-safety-contacts"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Legal:Wikimedia_Foundation_Legal_and_Safety_Contact_Information">Legal &amp; safety contacts</a></li>
	<li id="footer-places-wm-codeofconduct"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct">Code of Conduct</a></li>
	<li id="footer-places-developers"><a href="https://developer.wikimedia.org">Developers</a></li>
	<li id="footer-places-statslink"><a href="https://stats.wikimedia.org/#/en.wikipedia.org">Statistics</a></li>
	<li id="footer-places-cookiestatement"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement">Cookie statement</a></li>
	<li id="footer-places-mobileview"><a href="//en.wikipedia.org/w/index.php?title=Markup_language&amp;mobileaction=toggle_view_mobile" class="noprint stopMobileRedirectToggle">Mobile view</a></li>
</ul>

	<ul id="footer-icons" class="noprint">
	<li id="footer-copyrightico"><a href="https://www.wikimedia.org/" class="cdx-button cdx-button--fake-button cdx-button--size-large cdx-button--fake-button--enabled"><picture><source media="(min-width: 500px)" srcset="/static/images/footer/wikimedia-button.svg" width="84" height="29"><img src="/static/images/footer/wikimedia.svg" width="25" height="25" alt="Wikimedia Foundation" lang="en" loading="lazy"></picture></a></li>
	<li id="footer-poweredbyico"><a href="https://www.mediawiki.org/" class="cdx-button cdx-button--fake-button cdx-button--size-large cdx-button--fake-button--enabled"><picture><source media="(min-width: 500px)" srcset="/w/resources/assets/poweredby_mediawiki.svg" width="88" height="31"><img src="/w/resources/assets/mediawiki_compact.svg" alt="Powered by MediaWiki" lang="en" width="25" height="25" loading="lazy"></picture></a></li>
</ul>

</footer>

		</div>
	</div> 
</div> 
<div class="vector-header-container vector-sticky-header-container no-font-mode-scale">
	<div id="vector-sticky-header" class="vector-sticky-header">
		<div class="vector-sticky-header-start">
			<div class="vector-sticky-header-icon-start vector-button-flush-left vector-button-flush-right" aria-hidden="true">
				<button class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-sticky-header-search-toggle" tabindex="-1" data-event-name="ui.vector-sticky-search-form.icon"><span class="vector-icon mw-ui-icon-search mw-ui-icon-wikimedia-search"></span>

<span>Search</span>
			</button>
		</div>
			
		<div role="search" class="vector-search-box-vue  vector-search-box-show-thumbnail vector-search-box">
			<div class="vector-typeahead-search-container">
				<div class="cdx-typeahead-search cdx-typeahead-search--show-thumbnail">
					<form action="/w/index.php" id="vector-sticky-search-form" class="cdx-search-input cdx-search-input--has-end-button">
						<div  class="cdx-search-input__input-wrapper"  data-search-loc="header-moved">
							<div class="cdx-text-input cdx-text-input--has-start-icon">
								<input
									class="cdx-text-input__input mw-searchInput" autocomplete="off"
									
									type="search" name="search" placeholder="Search Wikipedia">
								<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>
							</div>
							<input type="hidden" name="title" value="Special:Search">
						</div>
						<button class="cdx-button cdx-search-input__end-button">Search</button>
					</form>
				</div>
			</div>
		</div>
		<div class="vector-sticky-header-context-bar">
				<nav aria-label="Contents" class="vector-toc-landmark">
						
					<div id="vector-sticky-header-toc" class="vector-dropdown mw-portlet mw-portlet-sticky-header-toc vector-sticky-header-toc vector-button-flush-left"  >
						<input type="checkbox" id="vector-sticky-header-toc-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-sticky-header-toc" class="vector-dropdown-checkbox "  aria-label="Toggle the table of contents"  >
						<label id="vector-sticky-header-toc-label" for="vector-sticky-header-toc-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-listBullet mw-ui-icon-wikimedia-listBullet"></span>

<span class="vector-dropdown-label-text">Toggle the table of contents</span>
						</label>
						<div class="vector-dropdown-content">
					
						<div id="vector-sticky-header-toc-unpinned-container" class="vector-unpinned-container">
						</div>
					
						</div>
					</div>
			</nav>
				<div class="vector-sticky-header-context-bar-primary" aria-hidden="true" ><span class="mw-page-title-main">Markup language</span></div>
			</div>
		</div>
		<div class="vector-sticky-header-end" aria-hidden="true">
			<div class="vector-sticky-header-icons">
				<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-talk-sticky-header" tabindex="-1" data-event-name="talk-sticky-header"><span class="vector-icon mw-ui-icon-speechBubbles mw-ui-icon-wikimedia-speechBubbles"></span>

<span></span>
			</a>
			<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-subject-sticky-header" tabindex="-1" data-event-name="subject-sticky-header"><span class="vector-icon mw-ui-icon-article mw-ui-icon-wikimedia-article"></span>

<span></span>
			</a>
			<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-history-sticky-header" tabindex="-1" data-event-name="history-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-history mw-ui-icon-wikimedia-wikimedia-history"></span>

<span></span>
			</a>
			<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only mw-watchlink" id="ca-watchstar-sticky-header" tabindex="-1" data-event-name="watch-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-star mw-ui-icon-wikimedia-wikimedia-star"></span>

<span></span>
			</a>
			<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-edit-sticky-header" tabindex="-1" data-event-name="wikitext-edit-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-wikiText mw-ui-icon-wikimedia-wikimedia-wikiText"></span>

<span></span>
			</a>
			<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-ve-edit-sticky-header" tabindex="-1" data-event-name="ve-edit-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-edit mw-ui-icon-wikimedia-wikimedia-edit"></span>

<span></span>
			</a>
			<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-viewsource-sticky-header" tabindex="-1" data-event-name="ve-edit-protected-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-editLock mw-ui-icon-wikimedia-wikimedia-editLock"></span>

<span></span>
			</a>
		</div>
			<div class="vector-sticky-header-buttons">
				<button class="cdx-button cdx-button--weight-quiet mw-interlanguage-selector" id="p-lang-btn-sticky-header" tabindex="-1" data-event-name="ui.dropdown-p-lang-btn-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-language mw-ui-icon-wikimedia-wikimedia-language"></span>

<span>64 languages</span>
			</button>
			<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--action-progressive" id="ca-addsection-sticky-header" tabindex="-1" data-event-name="addsection-sticky-header"><span class="vector-icon mw-ui-icon-speechBubbleAdd-progressive mw-ui-icon-wikimedia-speechBubbleAdd-progressive"></span>

<span>Add topic</span>
			</a>
		</div>
			<div class="vector-sticky-header-icon-end">
				<div class="vector-user-links">
				</div>
			</div>
		</div>
	</div>
</div>
<div class="mw-portlet mw-portlet-dock-bottom emptyPortlet" id="p-dock-bottom">
	<ul>
		
	</ul>
</div>
<script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgHostname":"mw-web.eqiad.main-8f8dcf6c-qt5mc","wgBackendResponseTime":843,"wgPageParseReport":{"limitreport":{"cputime":"0.485","walltime":"0.675","ppvisitednodes":{"value":3594,"limit":1000000},"revisionsize":{"value":29896,"limit":2097152},"postexpandincludesize":{"value":74196,"limit":2097152},"templateargumentsize":{"value":6388,"limit":2097152},"expansiondepth":{"value":17,"limit":100},"expensivefunctioncount":{"value":16,"limit":500},"unstrip-depth":{"value":1,"limit":20},"unstrip-size":{"value":103381,"limit":5000000},"entityaccesscount":{"value":1,"limit":500},"timingprofile":["100.00%  591.491      1 -total"," 30.54%  180.634      2 Template:Reflist"," 12.86%   76.082      1 Template:Cite_news"," 11.52%   68.120      2 Template:Navbox"," 11.41%   67.499      1 Template:Short_description"," 11.34%   67.053      1 Template:Markup_languages","  9.57%   56.600      2 Template:Sister_project","  9.19%   54.357      2 Template:Side_box","  7.86%   46.481      6 Template:Main","  7.85%   46.411      3 Template:Citation_needed"]},"scribunto":{"limitreport-timeusage":{"value":"0.310","limit":"10.000"},"limitreport-memusage":{"value":6850613,"limit":52428800}},"cachereport":{"origin":"mw-web.eqiad.main-8f8dcf6c-qt5mc","timestamp":"20251227190517","ttl":1802,"transientcontent":true}}});});</script>
<script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"Article","name":"Markup language","url":"https:\/\/en.wikipedia.org\/wiki\/Markup_language","sameAs":"http:\/\/www.wikidata.org\/entity\/Q37045","mainEntity":"http:\/\/www.wikidata.org\/entity\/Q37045","author":{"@type":"Organization","name":"Contributors to Wikimedia projects"},"publisher":{"@type":"Organization","name":"Wikimedia Foundation, Inc.","logo":{"@type":"ImageObject","url":"https:\/\/www.wikimedia.org\/static\/images\/wmf-hor-googpub.png"}},"datePublished":"2001-03-23T19:03:41Z","dateModified":"2025-12-27T18:30:11Z","image":"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/0\/03\/RecipeML_egg_nog.svg","headline":"computer language for annotating documents"}</script>
</body>
</html>