@markuxt/markuxt 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +168 -0
- package/app.config.d.ts +33 -0
- package/nuxt.config.ts +170 -0
- package/package.json +43 -0
- package/src/components/AppFooter.vue +225 -0
- package/src/components/AppHeader.vue +342 -0
- package/src/components/Hero.vue +438 -0
- package/src/components/Icon.vue +131 -0
- package/src/components/LanguageSwitcher.vue +71 -0
- package/src/components/MemberCard.vue +198 -0
- package/src/components/MembersGrid.vue +129 -0
- package/src/components/MermaidDiagram.vue +99 -0
- package/src/components/NewsCard.vue +119 -0
- package/src/components/PublicationCard.vue +245 -0
- package/src/components/SectionTitle.vue +75 -0
- package/src/components/content/ProseImg.vue +29 -0
- package/src/components/content/ProsePre.vue +58 -0
- package/src/components/content/ProseVideo.vue +45 -0
- package/src/composables/resolveContentImage.ts +35 -0
- package/src/content-transformers/binary-assets.ts +20 -0
- package/src/error.vue +58 -0
- package/src/layouts/default.vue +37 -0
- package/src/middleware/navigation-guard.ts +22 -0
- package/src/pages/index.vue +232 -0
- package/src/pages/members/[...slug].vue +542 -0
- package/src/pages/members/index.vue +147 -0
- package/src/pages/news/[...slug].vue +280 -0
- package/src/pages/news/index.vue +102 -0
- package/src/pages/positions/[...slug].vue +425 -0
- package/src/pages/positions/index.vue +266 -0
- package/src/pages/projects/[...slug].vue +441 -0
- package/src/pages/projects/index.vue +499 -0
- package/src/pages/publications/[...slug].vue +435 -0
- package/src/pages/publications/index.vue +145 -0
- package/src/plugins/mathml-components.ts +33 -0
- package/src/plugins/suppress-warnings.ts +40 -0
- package/src/public/_markuxt/components/AppFooter.vue +225 -0
- package/src/public/_markuxt/components/AppHeader.vue +342 -0
- package/src/public/_markuxt/components/Hero.vue +430 -0
- package/src/public/_markuxt/components/Icon.vue +131 -0
- package/src/public/_markuxt/components/LanguageSwitcher.vue +71 -0
- package/src/public/_markuxt/components/MemberCard.vue +198 -0
- package/src/public/_markuxt/components/MembersGrid.vue +129 -0
- package/src/public/_markuxt/components/MermaidDiagram.vue +99 -0
- package/src/public/_markuxt/components/NewsCard.vue +119 -0
- package/src/public/_markuxt/components/PublicationCard.vue +245 -0
- package/src/public/_markuxt/components/SectionTitle.vue +75 -0
- package/src/public/_markuxt/components/content/ProseImg.vue +29 -0
- package/src/public/_markuxt/components/content/ProsePre.vue +58 -0
- package/src/public/_markuxt/components/content/ProseVideo.vue +45 -0
- package/src/public/_markuxt/composables/resolveContentImage.ts +35 -0
- package/src/public/_markuxt/content-transformers/binary-assets.ts +20 -0
- package/src/public/_markuxt/error.vue +58 -0
- package/src/public/_markuxt/layouts/default.vue +37 -0
- package/src/public/_markuxt/middleware/navigation-guard.ts +22 -0
- package/src/public/_markuxt/pages/index.vue +232 -0
- package/src/public/_markuxt/pages/members/[...slug].vue +542 -0
- package/src/public/_markuxt/pages/members/index.vue +147 -0
- package/src/public/_markuxt/pages/news/[...slug].vue +280 -0
- package/src/public/_markuxt/pages/news/index.vue +102 -0
- package/src/public/_markuxt/pages/positions/[...slug].vue +425 -0
- package/src/public/_markuxt/pages/positions/index.vue +266 -0
- package/src/public/_markuxt/pages/projects/[...slug].vue +441 -0
- package/src/public/_markuxt/pages/projects/index.vue +499 -0
- package/src/public/_markuxt/pages/publications/[...slug].vue +435 -0
- package/src/public/_markuxt/pages/publications/index.vue +145 -0
- package/src/public/_markuxt/plugins/mathml-components.ts +33 -0
- package/src/public/_markuxt/plugins/suppress-warnings.ts +40 -0
- package/src/public/_markuxt/server/plugins/content-locale.ts +47 -0
- package/src/public/_markuxt/server/plugins/fix-content-anchors.ts +63 -0
- package/src/public/_markuxt/styles/_animations.css +99 -0
- package/src/public/_markuxt/styles/_base.css +31 -0
- package/src/public/_markuxt/styles/_code.css +109 -0
- package/src/public/_markuxt/styles/_components.css +109 -0
- package/src/public/_markuxt/styles/_layout.css +220 -0
- package/src/public/_markuxt/styles/_markdown.css +52 -0
- package/src/public/_markuxt/styles/_tokens.css +62 -0
- package/src/public/_markuxt/styles/_typography.css +144 -0
- package/src/public/_markuxt/styles/_utilities.css +110 -0
- package/src/public/_markuxt/styles/main.css +784 -0
- package/src/public/images/logo.png +0 -0
- package/src/server/plugins/content-locale.ts +47 -0
- package/src/server/plugins/fix-content-anchors.ts +63 -0
- package/src/styles/_animations.css +99 -0
- package/src/styles/_base.css +31 -0
- package/src/styles/_code.css +109 -0
- package/src/styles/_components.css +109 -0
- package/src/styles/_layout.css +220 -0
- package/src/styles/_markdown.css +52 -0
- package/src/styles/_tokens.css +62 -0
- package/src/styles/_typography.css +144 -0
- package/src/styles/_utilities.css +110 -0
- package/src/styles/main.css +784 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
# Markuxt
|
|
2
|
+
|
|
3
|
+
<div align="center">
|
|
4
|
+
<img src="src/public/images/logo.png" alt="Markuxt" width="360" />
|
|
5
|
+
<!-- <h1>Markuxt</h1> -->
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
A Markdown-first academic portal framework for laboratories, research groups, and knowledge communities, powered by [Nuxt 3](https://nuxt.com/).
|
|
9
|
+
|
|
10
|
+
Markuxt provides a complete theme layer — layouts, pages, components, content transformers, and i18n — so that consuming sites only need to provide **content** and **configuration**.
|
|
11
|
+
|
|
12
|
+
## Features
|
|
13
|
+
|
|
14
|
+
- **Markdown-driven content** — Pages, members, publications, projects, positions, and news are all authored in Markdown with YAML frontmatter.
|
|
15
|
+
- **Configurable navigation** — Define which pages appear in the header, footer, and route guard via a single `navigation` array in `appConfig`.
|
|
16
|
+
- **Internationalization** — Built-in i18n support via `@nuxtjs/i18n`. Consuming sites provide their own locale files.
|
|
17
|
+
- **Design system** — CSS custom properties for colors, spacing, typography, and more. Easy to override.
|
|
18
|
+
- **Content transformers** — Binary assets (images, videos) placed next to Markdown files are automatically synced to `public/` for static serving.
|
|
19
|
+
- **Mermaid diagrams** — First-class support with proper font loading and overflow handling.
|
|
20
|
+
- **LaTeX / KaTeX** — Math rendering via `remark-math` + `rehype-katex`.
|
|
21
|
+
- **404 page** — Custom error page with header and footer preserved.
|
|
22
|
+
|
|
23
|
+
## Architecture
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
markuxt/
|
|
27
|
+
├── nuxt.config.ts # Layer configuration (modules, hooks, vite, etc.)
|
|
28
|
+
├── app.config.d.ts # TypeScript declarations for markuxt AppConfig
|
|
29
|
+
├── src/
|
|
30
|
+
│ ├── assets/main.css # Design system & global styles
|
|
31
|
+
│ ├── components/ # Vue components (AppHeader, AppFooter, Hero, etc.)
|
|
32
|
+
│ ├── composables/ # Shared composables
|
|
33
|
+
│ ├── content-transformers/ # Custom Nuxt Content transformers
|
|
34
|
+
│ ├── error.vue # Custom 404 error page
|
|
35
|
+
│ ├── layouts/default.vue # Default layout with header + footer
|
|
36
|
+
│ ├── middleware/ # Route middleware (navigation guard)
|
|
37
|
+
│ ├── pages/ # All page routes
|
|
38
|
+
│ │ ├── index.vue # Homepage
|
|
39
|
+
│ │ ├── members/ # Members listing & detail pages
|
|
40
|
+
│ │ ├── news/ # News listing & detail pages
|
|
41
|
+
│ │ ├── positions/ # Open positions
|
|
42
|
+
│ │ ├── projects/ # Projects listing & detail pages
|
|
43
|
+
│ │ └── publications/ # Publications listing & detail pages
|
|
44
|
+
│ ├── plugins/ # Nuxt plugins
|
|
45
|
+
│ └── server/plugins/ # Server-side Nitro plugins
|
|
46
|
+
└── package.json
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Configuration Reference
|
|
50
|
+
|
|
51
|
+
Consuming sites configure Markuxt through `appConfig.markuxt` in their `nuxt.config.ts`:
|
|
52
|
+
|
|
53
|
+
```ts
|
|
54
|
+
export default defineNuxtConfig({
|
|
55
|
+
appConfig: {
|
|
56
|
+
markuxt: {
|
|
57
|
+
// Logo image path
|
|
58
|
+
logo: {
|
|
59
|
+
src: '/images/logo.png',
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
// Navigation items — controls header nav, footer quick links,
|
|
63
|
+
// and route guarding. Pages NOT listed here will return 404.
|
|
64
|
+
navigation: [
|
|
65
|
+
{ to: '/', labelKey: 'nav.home' },
|
|
66
|
+
{ to: '/members', labelKey: 'nav.members' },
|
|
67
|
+
{ to: '/publications', labelKey: 'nav.publications' },
|
|
68
|
+
{ to: '/projects', labelKey: 'nav.projects' },
|
|
69
|
+
{ to: '/positions', labelKey: 'nav.positions' },
|
|
70
|
+
{ to: '/news', labelKey: 'nav.news' },
|
|
71
|
+
],
|
|
72
|
+
|
|
73
|
+
// Contact information shown in footer
|
|
74
|
+
contact: {
|
|
75
|
+
email: 'lab@example.edu',
|
|
76
|
+
externalUrl: 'https://www.example.edu',
|
|
77
|
+
externalLabelKey: 'footer.universityLink', // i18n key
|
|
78
|
+
},
|
|
79
|
+
|
|
80
|
+
// Homepage carousel
|
|
81
|
+
carousel: {
|
|
82
|
+
fallbackImage: '/images/logo.png',
|
|
83
|
+
images: [
|
|
84
|
+
{ src: '/images/photo1.jpg', alt: 'Lab', caption: 'Our Lab' },
|
|
85
|
+
],
|
|
86
|
+
},
|
|
87
|
+
|
|
88
|
+
// Research areas on homepage — `icon` references a globally
|
|
89
|
+
// registered Vue component name (see Icons section below)
|
|
90
|
+
researchAreas: [
|
|
91
|
+
{ icon: 'IconSearch', titleKey: 'research.aerospace', descKey: 'research.aerospaceDesc' },
|
|
92
|
+
],
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
})
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Navigation Guard
|
|
99
|
+
|
|
100
|
+
Pages defined in `navigation` are accessible. Any markuxt section page (`/members`, `/publications`, `/projects`, `/positions`, `/news`) that is **not** listed will return a 404. The home page (`/`) is always accessible.
|
|
101
|
+
|
|
102
|
+
## Icons
|
|
103
|
+
|
|
104
|
+
Markuxt does **not** bundle any icon library. The consuming site is responsible for registering Vue components globally and referencing them by name in configuration.
|
|
105
|
+
|
|
106
|
+
Example using `@icon-park/vue-next`:
|
|
107
|
+
|
|
108
|
+
**`plugins/icons.ts`** (project root, outside `src/` to avoid Content scanning):
|
|
109
|
+
|
|
110
|
+
```ts
|
|
111
|
+
import Search from '@icon-park/vue-next/es/icons/Search'
|
|
112
|
+
import Robot from '@icon-puxt/vue-next/es/icons/Robot'
|
|
113
|
+
|
|
114
|
+
export default defineNuxtPlugin((nuxtApp) => {
|
|
115
|
+
nuxtApp.vueApp.component('IconSearch', Search)
|
|
116
|
+
nuxtApp.vueApp.component('IconRobot', Robot)
|
|
117
|
+
})
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
**`nuxt.config.ts`**:
|
|
121
|
+
|
|
122
|
+
```ts
|
|
123
|
+
export default defineNuxtConfig({
|
|
124
|
+
plugins: ['~~/plugins/icons.ts'],
|
|
125
|
+
appConfig: {
|
|
126
|
+
markuxt: {
|
|
127
|
+
researchAreas: [
|
|
128
|
+
{ icon: 'IconSearch', titleKey: 'research.search', descKey: 'research.searchDesc' },
|
|
129
|
+
],
|
|
130
|
+
},
|
|
131
|
+
},
|
|
132
|
+
})
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
## i18n
|
|
136
|
+
|
|
137
|
+
Markuxt expects consuming sites to provide translation files. Translation keys used by Markuxt's components (e.g. `nav.home`, `footer.brand`, `members.staff`) must be present in the site's locale JSON files.
|
|
138
|
+
|
|
139
|
+
## Content Structure
|
|
140
|
+
|
|
141
|
+
Markuxt uses `@nuxt/content` v2. The consuming site configures the content source directory:
|
|
142
|
+
|
|
143
|
+
```ts
|
|
144
|
+
content: {
|
|
145
|
+
sources: {
|
|
146
|
+
content: {
|
|
147
|
+
driver: 'fs',
|
|
148
|
+
base: resolve(process.cwd(), 'src'),
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
},
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Expected content directories under the base:
|
|
155
|
+
|
|
156
|
+
| Path | Content Type |
|
|
157
|
+
|-----------------|---------------------------------|
|
|
158
|
+
| `members/` | Member profiles (Markdown) |
|
|
159
|
+
| `news/` | News articles (Markdown) |
|
|
160
|
+
| `publications/` | Publication entries (Markdown) |
|
|
161
|
+
| `projects/` | Project descriptions (Markdown) |
|
|
162
|
+
| `positions/` | Open positions (Markdown) |
|
|
163
|
+
|
|
164
|
+
Binary assets (images, videos) placed alongside Markdown files are automatically synced to `public/_markuxt/` during build.
|
|
165
|
+
|
|
166
|
+
## License
|
|
167
|
+
|
|
168
|
+
[Apache-2.0](LICENSE)
|
package/app.config.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare module 'nuxt/schema' {
|
|
2
|
+
interface AppConfig {
|
|
3
|
+
markuxt?: {
|
|
4
|
+
logo?: {
|
|
5
|
+
src?: string
|
|
6
|
+
}
|
|
7
|
+
navigation?: Array<{
|
|
8
|
+
to: string
|
|
9
|
+
labelKey: string
|
|
10
|
+
}>
|
|
11
|
+
contact?: {
|
|
12
|
+
email?: string
|
|
13
|
+
externalUrl?: string
|
|
14
|
+
externalLabelKey?: string
|
|
15
|
+
}
|
|
16
|
+
carousel?: {
|
|
17
|
+
fallbackImage?: string
|
|
18
|
+
images?: Array<{
|
|
19
|
+
src: string
|
|
20
|
+
alt?: string
|
|
21
|
+
caption?: string
|
|
22
|
+
}>
|
|
23
|
+
}
|
|
24
|
+
researchAreas?: Array<{
|
|
25
|
+
icon: string
|
|
26
|
+
titleKey: string
|
|
27
|
+
descKey: string
|
|
28
|
+
}>
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export {}
|
package/nuxt.config.ts
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
2
|
+
import { readdirSync, mkdirSync, existsSync, copyFileSync, rmSync } from 'fs'
|
|
3
|
+
import { join, parse, extname, relative, resolve, dirname } from 'path'
|
|
4
|
+
import { fileURLToPath } from 'url'
|
|
5
|
+
|
|
6
|
+
const __filename = fileURLToPath(import.meta.url)
|
|
7
|
+
const __dirname = dirname(__filename)
|
|
8
|
+
|
|
9
|
+
// Site root directory — content, assets, i18n live here.
|
|
10
|
+
// Override via MARKUXT_ROOT_DIR env var; defaults to 'src/'.
|
|
11
|
+
const ROOT_DIR = process.env.MARKUXT_ROOT_DIR || 'src/'
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Sync non-document files (images, videos, etc.) from rootDir to rootDir/public/_markuxt/.
|
|
15
|
+
* This lets authors place assets next to their markdown files while still serving
|
|
16
|
+
* them as static files at build time (Nuxt Content v2 ignores binary files).
|
|
17
|
+
*
|
|
18
|
+
* Source: src/members/staff/salman-ijaz.webp
|
|
19
|
+
* Target: src/public/_markuxt/members/staff/salman-ijaz.webp
|
|
20
|
+
* URL: /_markuxt/members/staff/salman-ijaz.webp
|
|
21
|
+
*/
|
|
22
|
+
function syncContentAssets(rootDir: string) {
|
|
23
|
+
const docExtensions = new Set(['.md', '.mdx', '.yml', '.yaml', '.json', '.csv'])
|
|
24
|
+
// Directories to skip (output dir and non-content dirs)
|
|
25
|
+
const skipDirs = new Set(['public', 'i18n'])
|
|
26
|
+
const targetDir = join(rootDir, 'public', '_markuxt')
|
|
27
|
+
|
|
28
|
+
// Clean previous output so stale files don't linger
|
|
29
|
+
if (existsSync(targetDir)) {
|
|
30
|
+
rmSync(targetDir, { recursive: true, force: true })
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
let copiedCount = 0
|
|
34
|
+
|
|
35
|
+
function walk(dir: string) {
|
|
36
|
+
if (!existsSync(dir)) return
|
|
37
|
+
const entries = readdirSync(dir, { withFileTypes: true })
|
|
38
|
+
for (const entry of entries) {
|
|
39
|
+
const fullPath = join(dir, entry.name)
|
|
40
|
+
if (entry.isDirectory()) {
|
|
41
|
+
if (!skipDirs.has(entry.name)) {
|
|
42
|
+
walk(fullPath)
|
|
43
|
+
}
|
|
44
|
+
} else if (entry.isFile()) {
|
|
45
|
+
const ext = extname(entry.name).toLowerCase()
|
|
46
|
+
if (!docExtensions.has(ext)) {
|
|
47
|
+
const rel = relative(rootDir, fullPath)
|
|
48
|
+
const destPath = join(targetDir, rel)
|
|
49
|
+
const destDir = parse(destPath).dir
|
|
50
|
+
if (!existsSync(destDir)) {
|
|
51
|
+
mkdirSync(destDir, { recursive: true })
|
|
52
|
+
}
|
|
53
|
+
copyFileSync(fullPath, destPath)
|
|
54
|
+
copiedCount++
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
walk(rootDir)
|
|
61
|
+
console.log(`[Markuxt] Synced ${copiedCount} asset(s) → public/_markuxt/`)
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export default defineNuxtConfig({
|
|
65
|
+
compatibilityDate: '2024-11-01',
|
|
66
|
+
devtools: { enabled: true },
|
|
67
|
+
|
|
68
|
+
// Source directory
|
|
69
|
+
srcDir: 'src/',
|
|
70
|
+
|
|
71
|
+
// Nuxt Content module + i18n
|
|
72
|
+
modules: ['@nuxt/content', '@nuxtjs/i18n'],
|
|
73
|
+
|
|
74
|
+
// i18n defaults — consuming site overrides locales and langDir
|
|
75
|
+
i18n: {
|
|
76
|
+
defaultLocale: 'en',
|
|
77
|
+
strategy: 'no_prefix',
|
|
78
|
+
detectBrowserLanguage: {
|
|
79
|
+
useCookie: true,
|
|
80
|
+
cookieKey: 'i18n_locale',
|
|
81
|
+
redirectOn: 'root'
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
|
|
85
|
+
// Build-time hooks
|
|
86
|
+
hooks: {
|
|
87
|
+
// Register a custom transformer for binary assets (images, videos, etc.)
|
|
88
|
+
// so @nuxt/content does not warn about unsupported file extensions.
|
|
89
|
+
'content:context': (ctx: { transformers: string[] }) => {
|
|
90
|
+
ctx.transformers.push(
|
|
91
|
+
resolve(__dirname, 'src/content-transformers/binary-assets.ts')
|
|
92
|
+
)
|
|
93
|
+
},
|
|
94
|
+
'build:before': () => {
|
|
95
|
+
const cwd = process.cwd()
|
|
96
|
+
const rootDir = join(cwd, ROOT_DIR)
|
|
97
|
+
|
|
98
|
+
// Sync assets to public/_markuxt/
|
|
99
|
+
syncContentAssets(rootDir)
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
|
|
103
|
+
// App configuration
|
|
104
|
+
app: {
|
|
105
|
+
head: {
|
|
106
|
+
meta: [
|
|
107
|
+
{ charset: 'utf-8' },
|
|
108
|
+
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
|
109
|
+
],
|
|
110
|
+
link: [
|
|
111
|
+
{ rel: 'icon', type: 'image/png', href: '/images/logo.png' },
|
|
112
|
+
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
|
|
113
|
+
{ rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' },
|
|
114
|
+
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,100;0,9..144,200;0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,100;1,9..144,200;1,9..144,300;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700;1,9..144,800;1,9..144,900&display=swap' }
|
|
115
|
+
],
|
|
116
|
+
script: []
|
|
117
|
+
},
|
|
118
|
+
pageTransition: { name: 'page', mode: 'out-in' },
|
|
119
|
+
baseURL: process.env.NUXT_PUBLIC_BASE_URL || '/'
|
|
120
|
+
},
|
|
121
|
+
|
|
122
|
+
// CSS — resolve relative to layer root, not the consuming site
|
|
123
|
+
css: [resolve(__dirname, 'src/styles/main.css')],
|
|
124
|
+
|
|
125
|
+
// Content module configuration
|
|
126
|
+
content: {
|
|
127
|
+
highlight: {
|
|
128
|
+
theme: {
|
|
129
|
+
default: 'github-light',
|
|
130
|
+
dusk: 'github-dark'
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
navigation: {
|
|
134
|
+
fields: ['icon', 'title', 'description']
|
|
135
|
+
},
|
|
136
|
+
markdown: {
|
|
137
|
+
tags: {
|
|
138
|
+
img: 'ProseImg',
|
|
139
|
+
video: 'ProseVideo'
|
|
140
|
+
},
|
|
141
|
+
remarkPlugins: {
|
|
142
|
+
'remark-math': {}
|
|
143
|
+
},
|
|
144
|
+
rehypePlugins: {
|
|
145
|
+
'rehype-katex': {
|
|
146
|
+
output: 'htmlAndMathml',
|
|
147
|
+
strict: false
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
|
|
153
|
+
// Nitro configuration
|
|
154
|
+
nitro: {
|
|
155
|
+
baseURL: process.env.NUXT_PUBLIC_BASE_URL || '/'
|
|
156
|
+
},
|
|
157
|
+
|
|
158
|
+
// TypeScript
|
|
159
|
+
typescript: {
|
|
160
|
+
strict: true,
|
|
161
|
+
typeCheck: false
|
|
162
|
+
},
|
|
163
|
+
|
|
164
|
+
// Vite
|
|
165
|
+
vite: {
|
|
166
|
+
optimizeDeps: {
|
|
167
|
+
include: ['@nuxt/content', 'mermaid']
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
})
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@markuxt/markuxt",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "A Markdown-first academic portal framework for laboratories, research groups, and knowledge communities, powered by Nuxt.",
|
|
5
|
+
"author": "hnrobert",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./nuxt.config.ts",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/markuxt/markuxt.git"
|
|
12
|
+
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"nuxt.config.ts",
|
|
17
|
+
"app.config.ts",
|
|
18
|
+
"app.config.d.ts",
|
|
19
|
+
"src/"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "nuxt dev",
|
|
23
|
+
"build": "nuxt build",
|
|
24
|
+
"generate": "nuxt generate",
|
|
25
|
+
"pack:local": "pnpm pack --pack-destination /tmp/markuxt-dist",
|
|
26
|
+
"postinstall": "nuxt prepare"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@icon-park/vue-next": "^1.4.2",
|
|
30
|
+
"@nuxt/content": "^2.13.2",
|
|
31
|
+
"@nuxtjs/i18n": "^10.4.0",
|
|
32
|
+
"katex": "0.16.47",
|
|
33
|
+
"mermaid": "11.15.0",
|
|
34
|
+
"nuxt": "^3.15.1",
|
|
35
|
+
"rehype-katex": "7.0.1",
|
|
36
|
+
"remark-math": "6.0.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/node": "^25.2.3",
|
|
40
|
+
"typescript": "^5.7.3",
|
|
41
|
+
"vue-tsc": "^3.2.4"
|
|
42
|
+
}
|
|
43
|
+
}
|