mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 00:03:27 +10:00
Merge pull request #184 from SHENG-X/fix-objective-section-in-markdown
fix: Markdown style doesn't work in OBJETIVE section #183
This commit is contained in:
@ -109,7 +109,7 @@ const Castform = () => {
|
||||
);
|
||||
|
||||
const Objective = () =>
|
||||
data.objective && data.objective.enable && <p className="m-5 text-sm">{data.objective.body}</p>;
|
||||
data.objective && data.objective.enable && <ReactMarkdown className="m-5 text-sm" source={data.objective.body} />;
|
||||
|
||||
const WorkItem = x => (
|
||||
<div key={x.id} className="my-3 px-5">
|
||||
|
||||
@ -87,7 +87,7 @@ const Glalie = () => {
|
||||
data.objective.enable && (
|
||||
<div>
|
||||
<Heading title={data.objective.heading} />
|
||||
<p className="text-sm text-justify">{data.objective.body}</p>
|
||||
<ReactMarkdown className="text-sm text-justify" source={data.objective.body} />
|
||||
</div>
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user