File size: 2,720 Bytes
8969f81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>
		{{#if meta.title}}
			{{meta.title}}
		{{else if doc.title}}
			{{doc.title}}
		{{else}}
			Write With Transformer
		{{/if}}
	</title>
	<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
	<link rel="stylesheet" href="/front/build/style.css?v4">
	<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700" rel="stylesheet">
	{{#if meta.title}}
		<meta property="og:title" content="{{meta.title}}">
	{{else}}
		<meta property="og:title" content="Write With Transformer">
	{{/if}}
	<meta property="og:type"   content="website">
	<meta property="og:url"    content="https://transformer.huggingface.co{{meta.path}}">
	{{#if meta.thumbnail}}
		<meta property="og:image"  content="https://transformer.huggingface.co/front/assets/{{meta.thumbnail}}.png">
	{{else}}
		<meta property="og:image"  content="https://transformer.huggingface.co/front/assets/thumbnail-large.png">
	{{/if}}
	<meta property="fb:app_id" content="1321688464574422">
	<meta name="twitter:card"  content="summary_large_image">
	<meta name="twitter:site"  content="@huggingface">
	<meta name="description"   content="See how a modern neural network auto-completes your text">
</head>
<body class="{{body_classes}}" data-editable="{{editable}}">
	{{{ body }}}
	
	<script src="/front/assets/github-buttons.js"></script>
	<script src="/front/node_modules/quill/dist/quill.js"></script>
	<script src="/front/build/bundle.js"></script>
	<script>
	(function() {
		if (window.location.hostname === 'localhost') {
			console.log('[livereload]', 'on');
			const s = document.createElement('script');
			s.setAttribute('src', '//localhost:35729/livereload.js');
			document.body.appendChild(s);
		}
	})();
	</script>
	<!-- Google analytics (legacy) -->
	<script>
	if (! ['localhost', 'huggingface.test'].includes(window.location.hostname)) {
		(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
		(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
		m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
		})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
		ga('create', 'UA-83738774-5', 'auto');
		ga('send', 'pageview');
	}
	</script>
	<!-- Google tag (gtag.js) -->
	<script async src="https://www.googletagmanager.com/gtag/js?id=G-56Y0W3EPT3"></script>
	<script>
		if (! ['localhost', 'huggingface.test'].includes(window.location.hostname)) {
			window.dataLayer = window.dataLayer || [];
			function gtag(){dataLayer.push(arguments);}
			gtag('js', new Date());
			gtag('config', 'G-56Y0W3EPT3');
		}
	</script>
</body>
</html>